Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Page Title</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
  9. <link rel="stylesheet" href="CSS/bootstrap.min.css">
  10. <script src="main.js"></script>
  11. </head>
  12. <body>
  13. <div class="container" style="background-color:rgb(141, 169, 197)">
  14. <form action="datasaving.php" method ="POST" class="form-group">
  15.  
  16. <label for="First Name">First Name</label> <br>
  17. <input type="text" class="form-control" id="userf_name" required name="firstname">
  18.  
  19. <label for="Last Name">Last Name</label> <br>
  20. <input type="text" class="form-control" id="userL_name" name="lastname" required>
  21.  
  22. <label for="email">Email</label> <br>
  23. <input type="text" class="form-control" id="user_email" name="email" required>
  24.  
  25. <label for="password">Password</label> <br>
  26. <input type="password" class="form-control" id="user_password" required name="password">
  27. <br>
  28. <select name="gender" id="user_gender" > Gender
  29. <option value="1">Male</option>
  30. <option value="2">Female</option>
  31. <option value="3">Others</option>
  32. </select>
  33. <br>
  34.  
  35. <label for="checkbox">Remember</label>
  36. <input type="checkbox"> <br>
  37.  
  38.  
  39. <button type="submit" class="btn btn-primary">submit</button >
  40. <button type="reset" class="btn btn-danger">Forgot Passord?</button>
  41.  
  42. </form>
  43.  
  44.  
  45. </div>
  46.  
  47.  
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement