Created
January 26, 2016 23:15
-
-
Save yosemsweet/592a45423c4cc1888bbd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<fieldset> | |
<div class='form-group'> | |
<input type="email" class='form-control' name="entry[email]" placeholder="Enter Your Email" required> | |
</div> | |
<div class='form-group'> | |
<input type="text" class='form-control' name="entry[name]" placeholder="Enter Your Name" required> | |
</div> | |
</fieldset> | |
<fieldset class='form-group'> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox" value="love" name="entry[interests][]"> | |
I want more love from my customers | |
</label> | |
</div> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox" value="money" name="entry[interests][]"> | |
I want more money from my customers | |
</label> | |
</div> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox" value="beach" name="entry[interests][]"> | |
I want to spend more time at the beach | |
</label> | |
</div> | |
</fieldset> | |
<button class='btn btn-success' type="submit" engagement>Get started on a better tomorrow</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment