Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Form Validation</title>
  4. <!-- Latest compiled and minified CSS -->
  5. <script src="static/jquery-3.1.1.js"></script>
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  7. <!-- Optional theme -->
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
  9. <!-- Latest compiled and minified JavaScript -->
  10. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  11. <script src="C:/Users/DA_YALS/Desktop/fv/static/combodate.js" type="text/javascript"></script>
  12. <script>
  13. $(document).ready(function(){
  14. $('#date').combodate();
  15. });
  16. </script>
  17. </head>
  18. <body>
  19. <div class="container-fluid">
  20. <div class="row">
  21. <div class="col-lg-3"></div>
  22. <div class="col-lg-6" style="height: 500px; border:solid black;">
  23. <form role="form" id="register-form" autocomplete="off">
  24. <div class="form-group">
  25. <label for="firstname">First Name:</label>
  26. <input class="form-control" id="firstname" placeholder="First Name" type="text">
  27. </div>
  28.  
  29. <div class="form-group">
  30. <label for="lastname">Last Name:</label>
  31. <input class="form-control" id="lastname" placeholder="Last Name" type="text">
  32. </div>
  33.  
  34. <div class="form-group">
  35. <label for="username">Username:</label>
  36. <input class="form-control" placeholder="Uername" type="text" id="username">
  37. </div>
  38.  
  39. <div class="form-group">
  40. <label for="password">Password:</label>
  41. <input class="form-control" placeholder="Password" type="password" id="password">
  42. </div>
  43.  
  44. <div class="form-group">
  45. <label for="cpassword">Password:</label>
  46. <input class="form-control" placeholder="Password" type="password" id="cpassword">
  47. </div>
  48.  
  49. <input type="text" id="date" data-format="DD-MM-YYYY" data-template="D MMM YYYY" name="date" value="09-01-2013">
  50. </form>
  51. </div>
  52. <div class="col-lg-3">
  53. </div>
  54. </div>
  55. </div>
  56.  
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement