register.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 3 | Registration Page</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <!-- Font Awesome -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  11. <!-- Ionicons -->
  12. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
  15. <!-- iCheck -->
  16. <link rel="stylesheet" href="../../plugins/iCheck/square/blue.css">
  17. <!-- Google Font: Source Sans Pro -->
  18. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  19. </head>
  20. <body class="hold-transition register-page">
  21. <div class="register-box">
  22. <div class="register-logo">
  23. <a href="../../index2.html"><b>Admin</b>LTE</a>
  24. </div>
  25. <div class="card">
  26. <div class="card-body register-card-body">
  27. <p class="login-box-msg">Register a new membership</p>
  28. <form action="../../index.html" method="post">
  29. <div class="form-group has-feedback">
  30. <input type="text" class="form-control" placeholder="Full name">
  31. <span class="fa fa-user form-control-feedback"></span>
  32. </div>
  33. <div class="form-group has-feedback">
  34. <input type="email" class="form-control" placeholder="Email">
  35. <span class="fa fa-envelope form-control-feedback"></span>
  36. </div>
  37. <div class="form-group has-feedback">
  38. <input type="password" class="form-control" placeholder="Password">
  39. <span class="fa fa-lock form-control-feedback"></span>
  40. </div>
  41. <div class="form-group has-feedback">
  42. <input type="password" class="form-control" placeholder="Retype password">
  43. <span class="fa fa-lock form-control-feedback"></span>
  44. </div>
  45. <div class="row">
  46. <div class="col-8">
  47. <div class="checkbox icheck">
  48. <label>
  49. <input type="checkbox"> I agree to the <a href="#">terms</a>
  50. </label>
  51. </div>
  52. </div>
  53. <!-- /.col -->
  54. <div class="col-4">
  55. <button type="submit" class="btn btn-primary btn-block btn-flat">Register</button>
  56. </div>
  57. <!-- /.col -->
  58. </div>
  59. </form>
  60. <div class="social-auth-links text-center">
  61. <p>- OR -</p>
  62. <a href="#" class="btn btn-block btn-primary">
  63. <i class="fa fa-facebook mr-2"></i>
  64. Sign up using Facebook
  65. </a>
  66. <a href="#" class="btn btn-block btn-danger">
  67. <i class="fa fa-google-plus mr-2"></i>
  68. Sign up using Google+
  69. </a>
  70. </div>
  71. <a href="login.html" class="text-center">I already have a membership</a>
  72. </div>
  73. <!-- /.form-box -->
  74. </div><!-- /.card -->
  75. </div>
  76. <!-- /.register-box -->
  77. <!-- jQuery -->
  78. <script src="../../plugins/jquery/jquery.min.js"></script>
  79. <!-- Bootstrap 4 -->
  80. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  81. <!-- iCheck -->
  82. <script src="../../plugins/iCheck/icheck.min.js"></script>
  83. <script>
  84. $(function () {
  85. $('input').iCheck({
  86. checkboxClass: 'icheckbox_square-blue',
  87. radioClass : 'iradio_square-blue',
  88. increaseArea : '20%' // optional
  89. })
  90. })
  91. </script>
  92. </body>
  93. </html>