Guest User

Untitled

a guest
Jul 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. <script type="text/javascript" src="//contact-api.inguest.com/bundles/revinatecontactapi/js/revinate-form.js"></script>
  2. <form id="revinate_contact_api_form" token="00000000-0000-0000-0000-0000000000000" onsubmit="revFormOnSubmit(); event.preventDefault();">
  3. <style scoped>
  4. label {display:inline-block; width:130px;}
  5. label.required:after { content:" *"; color: red;}
  6. fieldset {width:500px; padding:1em; border:3px solid #CCC;}
  7. input {margin: 1px 5px 1px 5px; width:145px; padding: 3px; border-width: 2px;}
  8. input.long {width: 300px}
  9. div.button {margin-top: 1em; text-align: center;}
  10. </style>
  11. <fieldset>
  12. <legend> Revinate Contact Sign Up Form Sample. </legend>
  13. <div>
  14. <label>First/ Last Name</label>
  15. <input type="text" name="first_name"/><input type="text" name="last_name"/>
  16. </div>
  17. <div>
  18. <label>Title, Gender</label>
  19. <input type="text" name="title"/><input type="text" name="gender"/>
  20. </div>
  21. <div>
  22. <label>Street Address</label>
  23. <input type="text" name="address_1"/><input type="text" name="address_2"/>
  24. </div>
  25. <div>
  26. <label>City, State</label>
  27. <input type="text" name="city"/><input type="text" name="state"/>
  28. </div>
  29. <div>
  30. <label>Country, Postal</label>
  31. <input type="text" name="country"/><input type="text" name="zip"/>
  32. </div>
  33. <div>
  34. <label>Phone Number</label>
  35. <input class="long" type="tel" name="phone"/>
  36. </div>
  37. <div>
  38. <label class="required">Email Address</label>
  39. <input class="long" type="email" name="email" required/>
  40. </div>
  41. <div>
  42. <label>Date of Birth</label>
  43. <input class="text" name="date_of_birth"/>
  44. </div>
  45. <div class="button">
  46. <button type="submit">Sign Me Up !</button>
  47. </div>
  48. </fieldset>
  49. </form>
Add Comment
Please, Sign In to add comment