Added favicon and got Action Network forms working
This commit is contained in:
@@ -18,10 +18,17 @@ If you know of a company that has attempted or achieved an exit to community tra
|
||||
Want to plan your community exit strategy? Got experience or legal snippets you'd like to share? We'd love to hear from you!
|
||||
|
||||
<div class="contact-form-container">
|
||||
<form class="e2c-contact-form" action="#" method="post">
|
||||
<!-- Action Network Form Embed -->
|
||||
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' />
|
||||
<script src='https://actionnetwork.org/widgets/v3/form/e2c-website-join-form?format=js&source=widget&clear_id=true'></script>
|
||||
<div id='can-form-area-e2c-website-join-form' style='width: 100%; margin-bottom: 24px;'></div>
|
||||
|
||||
<!-- Fallback form for cases where JS is disabled -->
|
||||
<noscript>
|
||||
<form class="e2c-contact-form" action="https://actionnetwork.org/forms/e2c-website-join-form" method="post">
|
||||
<div class="form-group">
|
||||
<label for="country">Country *</label>
|
||||
<select id="country" name="country" required>
|
||||
<select id="country" name="person[country]" required>
|
||||
<option value="">Select your country</option>
|
||||
<option value="US">United States</option>
|
||||
<option value="CA">Canada</option>
|
||||
@@ -50,19 +57,19 @@ Want to plan your community exit strategy? Got experience or legal snippets you'
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email">Email *</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
<input type="email" id="email" name="person[email]" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" id="name" name="name">
|
||||
<input type="text" id="name" name="person[given_name]">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="organization">Organization</label>
|
||||
<input type="text" id="organization" name="organization">
|
||||
<input type="text" id="organization" name="person[employer]">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="organization_url">Organization URL</label>
|
||||
<input type="url" id="organization_url" name="organization_url" placeholder="https://">
|
||||
<input type="url" id="organization_url" name="person[website]" placeholder="https://">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Interests in E2C</label>
|
||||
@@ -97,5 +104,6 @@ Want to plan your community exit strategy? Got experience or legal snippets you'
|
||||
</div>
|
||||
<button type="submit" class="submit-btn">Submit</button>
|
||||
</form>
|
||||
</noscript>
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user