Guest User

Untitled

a guest
Oct 24th, 2017
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <form action="/form.php" autocomplete="on">
  2. First name:<input type="text" name="first_name"><br>
  3. Last name: <input type="text" name="last_name"><br>
  4. E-mail: <input type="email" name="email" autocomplete="off">
  5. <input type="submit">
  6. </form>
  7.  
  8. <label for="frmNameA">Name</label>
  9. <input type="text" name="name" id="frmNameA"
  10. placeholder="Full name" required autocomplete="name">
  11.  
  12. <label for="frmEmailA">Email</label>
  13. <input type="email" name="email" id="frmEmailA"
  14. placeholder="name@example.com" required autocomplete="email">
  15.  
  16. <!-- note that "emailC" will not be autocompleted -->
  17. <label for="frmEmailC">Confirm Email</label>
  18. <input type="email" name="emailC" id="frmEmailC"
  19. placeholder="name@example.com" required autocomplete="email">
  20.  
  21. <label for="frmPhoneNumA">Phone</label>
  22. <input type="tel" name="phone" id="frmPhoneNumA"
  23. placeholder="+1-555-555-1212" required autocomplete="tel">
Add Comment
Please, Sign In to add comment