Created
July 20, 2013 06:24
-
-
Save spsaucier/6044067 to your computer and use it in GitHub Desktop.
Form with jQuery Number Verification
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
| <div id="MyForm"> | |
| <form method="POST" name="info-form"> | |
| <input type="hidden" value="/form-sent" name="returnURL" /> | |
| <label for="First Name">First Name: </label> | |
| <input type="text" name="First Name" maxlength="40" /> | |
| <label for="Last Name">Last Name: </label> | |
| <input type="text" name="Last Name" maxlength="80" /> | |
| <label>Enter the below number: </label> | |
| <input type="hidden" value="701469" id="verifyNumHidden" name="verifyNumHidden" /> | |
| <input type="text" id="enterVerify" name="enterVerify" /> | |
| <div id="verifyNum"></div> | |
| <input type="submit" value="Submit" name="save" class="cat_button" /> | |
| </form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment