Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> FORM </title>
  5. </head>
  6. <body>
  7.  
  8.  
  9. <form method="POST" action="submit.php">
  10.  
  11. <label>Name</label>
  12. <input type="text" name="name" required> <br>
  13. <label>Lastname</label>
  14. <input type="text" name="lastname" required><br>
  15. <label>Email</label>
  16. <input type="email" name="email" required><br>
  17. <label>DoB</label>
  18. <input type="date" name="dob" required><br>
  19. <label>Password</label>
  20. <input type="password" name="password" required><br>
  21.  
  22. <input type="submit" name="submit" required>
  23.  
  24. </form>
  25.  
  26.  
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement