AdminLTE/pages/examples/register.html

104 lines
3.5 KiB
HTML
Raw Normal View History

2014-02-01 16:49:36 +01:00
<!DOCTYPE html>
2020-05-31 13:09:01 +02:00
<html lang="en">
2015-09-19 20:05:54 +02:00
<head>
<meta charset="utf-8">
2018-03-17 18:07:55 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2020-06-05 07:31:34 +02:00
<title>AdminLTE 3 | Registration Page</title>
2018-03-17 18:07:55 +01:00
<!-- Google Font: Source Sans Pro -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
2015-09-19 20:05:54 +02:00
<!-- Font Awesome -->
<link rel="stylesheet" href="../../plugins/fontawesome-free/css/all.min.css">
<!-- icheck bootstrap -->
<link rel="stylesheet" href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css">
2015-09-19 20:05:54 +02:00
<!-- Theme style -->
2018-03-17 18:07:55 +01:00
<link rel="stylesheet" href="../../dist/css/adminlte.min.css">
2015-09-19 20:05:54 +02:00
</head>
<body class="hold-transition register-page">
<div class="register-box">
<div class="register-logo">
<a href="../../index2.html"><b>Admin</b>LTE</a>
</div>
2015-02-06 18:33:55 +01:00
2018-03-17 18:07:55 +01:00
<div class="card">
<div class="card-body register-card-body">
<p class="login-box-msg">Register a new membership</p>
2015-02-06 18:33:55 +01:00
2018-03-17 18:07:55 +01:00
<form action="../../index.html" method="post">
2018-07-14 23:43:23 +02:00
<div class="input-group mb-3">
2018-03-17 18:07:55 +01:00
<input type="text" class="form-control" placeholder="Full name">
<div class="input-group-append">
<div class="input-group-text">
<span class="fas fa-user"></span>
</div>
2018-07-14 23:43:23 +02:00
</div>
2018-03-17 18:07:55 +01:00
</div>
2018-07-14 23:43:23 +02:00
<div class="input-group mb-3">
2018-03-17 18:07:55 +01:00
<input type="email" class="form-control" placeholder="Email">
<div class="input-group-append">
<div class="input-group-text">
<span class="fas fa-envelope"></span>
</div>
2018-07-14 23:43:23 +02:00
</div>
2014-02-01 16:49:36 +01:00
</div>
2018-07-14 23:43:23 +02:00
<div class="input-group mb-3">
2018-03-17 18:07:55 +01:00
<input type="password" class="form-control" placeholder="Password">
<div class="input-group-append">
<div class="input-group-text">
<span class="fas fa-lock"></span>
</div>
2018-07-14 23:43:23 +02:00
</div>
2015-09-19 20:05:54 +02:00
</div>
2018-07-14 23:43:23 +02:00
<div class="input-group mb-3">
2018-03-17 18:07:55 +01:00
<input type="password" class="form-control" placeholder="Retype password">
<div class="input-group-append">
<div class="input-group-text">
<span class="fas fa-lock"></span>
</div>
2018-07-14 23:43:23 +02:00
</div>
2018-03-17 18:07:55 +01:00
</div>
<div class="row">
<div class="col-8">
<div class="icheck-primary">
<input type="checkbox" id="agreeTerms" name="terms" value="agree">
<label for="agreeTerms">
I agree to the <a href="#">terms</a>
2018-03-17 18:07:55 +01:00
</label>
</div>
</div>
<!-- /.col -->
<div class="col-4">
<button type="submit" class="btn btn-primary btn-block">Register</button>
2018-03-17 18:07:55 +01:00
</div>
<!-- /.col -->
</div>
</form>
<div class="social-auth-links text-center">
<p>- OR -</p>
<a href="#" class="btn btn-block btn-primary">
<i class="fab fa-facebook mr-2"></i>
2018-03-17 18:07:55 +01:00
Sign up using Facebook
</a>
<a href="#" class="btn btn-block btn-danger">
<i class="fab fa-google-plus mr-2"></i>
2018-03-17 18:07:55 +01:00
Sign up using Google+
</a>
2015-09-19 20:05:54 +02:00
</div>
2018-03-17 18:07:55 +01:00
<a href="login.html" class="text-center">I already have a membership</a>
2015-09-19 20:05:54 +02:00
</div>
2018-03-17 18:07:55 +01:00
<!-- /.form-box -->
</div><!-- /.card -->
2015-09-19 20:05:54 +02:00
</div>
<!-- /.register-box -->
2015-02-01 22:25:09 +01:00
2018-03-17 18:07:55 +01:00
<!-- jQuery -->
<script src="../../plugins/jquery/jquery.min.js"></script>
2018-02-04 00:45:19 +01:00
<!-- Bootstrap 4 -->
2018-03-17 18:07:55 +01:00
<script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- AdminLTE App -->
<script src="../../dist/js/adminlte.min.js"></script>
2015-09-19 20:05:54 +02:00
</body>
2015-06-01 09:27:47 +02:00
</html>