Advertisement
Guest User

Untitled

a guest
Aug 29th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Form validation</title>
  5. <meta charset="UTF-8">
  6. <link href="style.css" rel="stylesheet">
  7. </head>
  8. <body>
  9. <form name = 'myForm'>
  10. <div class = 'form'>
  11. <div>
  12. <label>Username: </label>
  13. <input type = 'text' name ='username' placeholder = 'Username'>
  14. </div>
  15. <div>
  16. <label>Email: </label>
  17. <input type='text' name ='email' placeholder = 'Email'>
  18. </div>
  19. <div>
  20. <label>Phone number: </label>
  21. <input type='text' name ='phoneNumber' placeholder = 'Phone number'>
  22. </div>
  23. <div>
  24. <label>Password: </label>
  25. <input type='password' name ='password' placeholder = 'Password'>
  26. </div>
  27. <div>
  28. <label>Repeat password: </label>
  29. <input type='password' name ='passwordRepeat' placeholder = 'Repeat password'>
  30. </div>
  31. <div>
  32. <input class= 'sendButton' type='submit' name ='submit' value = 'Send form'>
  33. </div>
  34. </div>
  35. </form>
  36. <script type="text/javascript" src = 'script2.js'></script>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement