Theme Inspinia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

register.html 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>INSPINIA | Register</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
  9. <link href="css/plugins/iCheck/custom.css" rel="stylesheet">
  10. <link href="css/animate.css" rel="stylesheet">
  11. <link href="css/style.css" rel="stylesheet">
  12. </head>
  13. <body class="gray-bg">
  14. <div class="middle-box text-center loginscreen animated fadeInDown">
  15. <div>
  16. <div>
  17. <h1 class="logo-name">IN+</h1>
  18. </div>
  19. <h3>Register to IN+</h3>
  20. <p>Create account to see it in action.</p>
  21. <form class="m-t" role="form" action="login.html">
  22. <div class="form-group">
  23. <input type="text" class="form-control" placeholder="Name" required="">
  24. </div>
  25. <div class="form-group">
  26. <input type="email" class="form-control" placeholder="Email" required="">
  27. </div>
  28. <div class="form-group">
  29. <input type="password" class="form-control" placeholder="Password" required="">
  30. </div>
  31. <div class="form-group">
  32. <div class="checkbox i-checks"><label> <input type="checkbox"><i></i> Agree the terms and policy </label></div>
  33. </div>
  34. <button type="submit" class="btn btn-primary block full-width m-b">Register</button>
  35. <p class="text-muted text-center"><small>Already have an account?</small></p>
  36. <a class="btn btn-sm btn-white btn-block" href="login.html">Login</a>
  37. </form>
  38. <p class="m-t"> <small>Inspinia we app framework base on Bootstrap 3 &copy; 2014</small> </p>
  39. </div>
  40. </div>
  41. <!-- Mainly scripts -->
  42. <script src="js/jquery-2.1.1.js"></script>
  43. <script src="js/bootstrap.min.js"></script>
  44. <!-- iCheck -->
  45. <script src="js/plugins/iCheck/icheck.min.js"></script>
  46. <script>
  47. $(document).ready(function(){
  48. $('.i-checks').iCheck({
  49. checkboxClass: 'icheckbox_square-green',
  50. radioClass: 'iradio_square-green',
  51. });
  52. });
  53. </script>
  54. </body>
  55. </html>