Added favicon and got Action Network forms working
This commit is contained in:
@@ -8,10 +8,17 @@ We're curating stories from founding teams and allies to help people learn from
|
||||
Help us share it with people who can benefit from its lessons.
|
||||
|
||||
<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-story-form?format=js&source=widget&clear_id=true'></script>
|
||||
<div id='can-form-area-e2c-website-story-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-story-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>
|
||||
@@ -40,19 +47,19 @@ Help us share it with people who can benefit from its lessons.
|
||||
</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="role">Role</label>
|
||||
<input type="text" id="role" name="role">
|
||||
<input type="text" id="role" name="person[occupation]">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="experience_description">Briefly describe your experience with community ownership</label>
|
||||
@@ -83,5 +90,6 @@ Help us share it with people who can benefit from its lessons.
|
||||
</div>
|
||||
<button type="submit" class="submit-btn">Submit</button>
|
||||
</form>
|
||||
</noscript>
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user