register.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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://use.fontawesome.com/releases/v5.9.0/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
  11. <!-- Ionicons -->
  12. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  13. <!-- icheck bootstrap -->
  14. <link rel="stylesheet" href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  15. <!-- Theme style -->
  16. <link rel="stylesheet" href="../../dist/css/adminlte.min.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="input-group mb-3">
  30. <input type="text" class="form-control" placeholder="Full name">
  31. <div class="input-group-append input-group-text">
  32. <span class="fas fa-user"></span>
  33. </div>
  34. </div>
  35. <div class="input-group mb-3">
  36. <input type="email" class="form-control" placeholder="Email">
  37. <div class="input-group-append input-group-text">
  38. <span class="fas fa-envelope"></span>
  39. </div>
  40. </div>
  41. <div class="input-group mb-3">
  42. <input type="password" class="form-control" placeholder="Password">
  43. <div class="input-group-append input-group-text">
  44. <span class="fas fa-lock"></span>
  45. </div>
  46. </div>
  47. <div class="input-group mb-3">
  48. <input type="password" class="form-control" placeholder="Retype password">
  49. <div class="input-group-append input-group-text">
  50. <span class="fas fa-lock"></span>
  51. </div>
  52. </div>
  53. <div class="row">
  54. <div class="col-8">
  55. <div class="icheck-primary">
  56. <input type="checkbox" id="agreeTerms" name="terms" value="agree">
  57. <label for="agreeTerms">
  58. I agree to the <a href="#">terms</a>
  59. </label>
  60. </div>
  61. </div>
  62. <!-- /.col -->
  63. <div class="col-4">
  64. <button type="submit" class="btn btn-primary btn-block btn-flat">Register</button>
  65. </div>
  66. <!-- /.col -->
  67. </div>
  68. </form>
  69. <div class="social-auth-links text-center">
  70. <p>- OR -</p>
  71. <a href="#" class="btn btn-block btn-primary">
  72. <i class="fab fa-facebook mr-2"></i>
  73. Sign up using Facebook
  74. </a>
  75. <a href="#" class="btn btn-block btn-danger">
  76. <i class="fab fa-google-plus mr-2"></i>
  77. Sign up using Google+
  78. </a>
  79. </div>
  80. <a href="login.html" class="text-center">I already have a membership</a>
  81. </div>
  82. <!-- /.form-box -->
  83. </div><!-- /.card -->
  84. </div>
  85. <!-- /.register-box -->
  86. <!-- jQuery -->
  87. <script src="../../plugins/jquery/jquery.min.js"></script>
  88. <!-- Bootstrap 4 -->
  89. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  90. </body>
  91. </html>