register.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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="../../plugins/fontawesome-free/css/all.min.css">
  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">
  32. <div class="input-group-text">
  33. <span class="fas fa-user"></span>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="input-group mb-3">
  38. <input type="email" class="form-control" placeholder="Email">
  39. <div class="input-group-append">
  40. <div class="input-group-text">
  41. <span class="fas fa-envelope"></span>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="input-group mb-3">
  46. <input type="password" class="form-control" placeholder="Password">
  47. <div class="input-group-append">
  48. <div class="input-group-text">
  49. <span class="fas fa-lock"></span>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="input-group mb-3">
  54. <input type="password" class="form-control" placeholder="Retype password">
  55. <div class="input-group-append">
  56. <div class="input-group-text">
  57. <span class="fas fa-lock"></span>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="row">
  62. <div class="col-8">
  63. <div class="icheck-primary">
  64. <input type="checkbox" id="agreeTerms" name="terms" value="agree">
  65. <label for="agreeTerms">
  66. I agree to the <a href="#">terms</a>
  67. </label>
  68. </div>
  69. </div>
  70. <!-- /.col -->
  71. <div class="col-4">
  72. <button type="submit" class="btn btn-primary btn-block">Register</button>
  73. </div>
  74. <!-- /.col -->
  75. </div>
  76. </form>
  77. <div class="social-auth-links text-center">
  78. <p>- OR -</p>
  79. <a href="#" class="btn btn-block btn-primary">
  80. <i class="fab fa-facebook mr-2"></i>
  81. Sign up using Facebook
  82. </a>
  83. <a href="#" class="btn btn-block btn-danger">
  84. <i class="fab fa-google-plus mr-2"></i>
  85. Sign up using Google+
  86. </a>
  87. </div>
  88. <a href="login.html" class="text-center">I already have a membership</a>
  89. </div>
  90. <!-- /.form-box -->
  91. </div><!-- /.card -->
  92. </div>
  93. <!-- /.register-box -->
  94. <!-- jQuery -->
  95. <script src="../../plugins/jquery/jquery.min.js"></script>
  96. <!-- Bootstrap 4 -->
  97. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  98. <!-- AdminLTE App -->
  99. <script src="../../dist/js/adminlte.min.js"></script>
  100. </body>
  101. </html>