Advertisement
Guest User

Untitled

a guest
Nov 15th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <style>
  4. form
  5.  {
  6.  margin: 0 auto;
  7.  width : 100%;
  8.  text-align: center;
  9.  
  10.  }
  11.  
  12. </style>
  13. <div>
  14. <form action="chooseDepartment.php" method="post" onsubmit="return validateForm()">
  15.  
  16.   Username:
  17.   <br>
  18.   <input type="text" name="username"  placeholder="your  username " id = "username" >
  19.   <br>
  20.   Password:
  21.   <br>
  22.   <input type="password" name="password" placeholder = "your password" >
  23.   <br>
  24.   E-mail:
  25.   <br>
  26.   <input type = "email" placeholder="your e-mail" >
  27.   <br>
  28.   <br>
  29.   <input type="submit" value="Register" >
  30.   <br>
  31.  
  32. </form>
  33. </div>
  34.  
  35.  
  36. <head>
  37. <title>Sign-up_page</title>
  38. <script type="text/javascript">
  39.             function validateForm(){
  40.                 var username = document.getElementById("username").value;
  41.                 var password = document.getElementById("password").value;
  42.                 var e-mail = document.getElementById("e-mail").value;
  43.                 if(username == null || username == ""){
  44.                     alert("Enter your first name! ");
  45.                     return false;
  46.                 }
  47.                 else if(password == null || password  == ""){
  48.                     alert("Enter your password ");
  49.                     return false;
  50.                 }
  51.                
  52.                 else if (e-mail == null || e-mail == "")
  53.                 {
  54.                     alert("Enter your e-mail! ");
  55.                     return false;
  56.                 }
  57.                
  58.                     else return true;
  59.                 }
  60.         </script>
  61.  
  62. </head>
  63. <body>
  64.  
  65. <h1></h1>
  66. <p></p>
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement