register.html 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>AdminLTE 2 | Registration Page</title>
  6. <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
  7. <!-- Bootstrap 3.3.2 -->
  8. <link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  9. <!-- Font Awesome Icons -->
  10. <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
  11. <!-- Theme style -->
  12. <link href="../../dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
  13. <!-- iCheck -->
  14. <link href="../../plugins/iCheck/square/blue.css" rel="stylesheet" type="text/css" />
  15. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  16. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  17. <!--[if lt IE 9]>
  18. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  19. <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
  20. <![endif]-->
  21. </head>
  22. <body class="register-page">
  23. <div class="register-box">
  24. <div class="register-logo">
  25. <a href="../../index2.html"><b>Admin</b>LTE</a>
  26. </div>
  27. <div class="register-box-body">
  28. <p class="login-box-msg">Register a new membership</p>
  29. <form action="../../index.html" method="post">
  30. <div class="form-group has-feedback">
  31. <input type="text" class="form-control" placeholder="Full name"/>
  32. <span class="glyphicon glyphicon-user form-control-feedback"></span>
  33. </div>
  34. <div class="form-group has-feedback">
  35. <input type="text" class="form-control" placeholder="Email"/>
  36. <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
  37. </div>
  38. <div class="form-group has-feedback">
  39. <input type="password" class="form-control" placeholder="Password"/>
  40. <span class="glyphicon glyphicon-lock form-control-feedback"></span>
  41. </div>
  42. <div class="form-group has-feedback">
  43. <input type="password" class="form-control" placeholder="Retype password"/>
  44. <span class="glyphicon glyphicon-log-in form-control-feedback"></span>
  45. </div>
  46. <div class="row">
  47. <div class="col-xs-8">
  48. <div class="checkbox icheck">
  49. <label>
  50. <input type="checkbox"> I agree to the <a href="#">terms</a>
  51. </label>
  52. </div>
  53. </div><!-- /.col -->
  54. <div class="col-xs-4">
  55. <button type="submit" class="btn btn-primary btn-block btn-flat">Register</button>
  56. </div><!-- /.col -->
  57. </div>
  58. </form>
  59. <div class="social-auth-links text-center">
  60. <p>- OR -</p>
  61. <a href="#" class="btn btn-block btn-social btn-facebook btn-flat"><i class="fa fa-facebook"></i> Sign up using Facebook</a>
  62. <a href="#" class="btn btn-block btn-social btn-google-plus btn-flat"><i class="fa fa-google-plus"></i> Sign up using Google+</a>
  63. </div>
  64. <a href="login.html" class="text-center">I already have a membership</a>
  65. </div><!-- /.form-box -->
  66. </div><!-- /.register-box -->
  67. <!-- jQuery 2.1.3 -->
  68. <script src="../../plugins/jQuery/jQuery-2.1.3.min.js"></script>
  69. <!-- Bootstrap 3.3.2 JS -->
  70. <script src="../../bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
  71. <!-- iCheck -->
  72. <script src="../../plugins/iCheck/icheck.min.js" type="text/javascript"></script>
  73. <script>
  74. $(function () {
  75. $('input').iCheck({
  76. checkboxClass: 'icheckbox_square-blue',
  77. radioClass: 'iradio_square-blue',
  78. increaseArea: '20%' // optional
  79. });
  80. });
  81. </script>
  82. </body>
  83. </html>