Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <!-- ---------------------------------------------------------------------- -->
  2. <!-- NOTE: These fields are optional debugging elements. Please uncomment -->
  3. <!-- these lines if you wish to test in debug mode. -->
  4. <!-- <input type="hidden" name="debug" value=1> -->
  5. <!-- <input type="hidden" name="debugEmail" -->
  6. <!-- value="ecurwen@curleycompany.com"> -->
  7. <!-- ---------------------------------------------------------------------- -->
  8.  
  9. <label for="first_name">First Name</label><input id="first_name" maxlength="40" name="first_name" size="20" type="text" /><br>
  10.  
  11. <label for="last_name">Last Name</label><input id="last_name" maxlength="80" name="last_name" size="20" type="text" /><br>
  12.  
  13. <label for="email">Email</label><input id="email" maxlength="80" name="email" size="20" type="text" /><br>
  14.  
  15. <label for="company">Company</label><input id="company" maxlength="40" name="company" size="20" type="text" /><br>
  16.  
  17. <label for="city">City</label><input id="city" maxlength="40" name="city" size="20" type="text" /><br>
  18.  
  19. <label for="state">State/Province</label><input id="state" maxlength="20" name="state" size="20" type="text" /><br>
  20.  
  21. <input type="submit" name="submit">
  22.  
  23. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement