Created
April 15, 2015 15:30
-
-
Save surefirewebserv/b37d11b776d7bae7147a to your computer and use it in GitHub Desktop.
Make sure all your quotes are double quotes and not single. Also, you need to keep the paragraph tags and the classes with each one.
This file contains hidden or 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 action="your_action_url" method="post"> | |
<p class="et_bloom_popup_input et_bloom_subscribe_name"> <!-- keep note of the paragraph and the classes being used, you need this --> | |
<input type="text" id="input_1" name="q1_control_fname" size="50" placeholder="Name" /> <!-- Placeholder is important --> | |
</p> | |
<p class="et_bloom_popup_input et_bloom_subscribe_email"> | |
<input type="email" class="validate[required, Email]" id="input_4" name="q4_email" size="50" placeholder="Email Address" /> | |
</p> | |
<button id="input_2" type="submit" class="form-submit-button">Learn How!</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment