-
Notifications
You must be signed in to change notification settings - Fork 84
/
signup.html
65 lines (62 loc) · 2.99 KB
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<!--
* Bootstrap Simple Admin Template
* Version: 2.1
* Author: Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sign up | Bootstrap Simple Admin Template</title>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/auth.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="auth-content">
<div class="card">
<div class="card-body text-center">
<div class="mb-4">
<img class="brand" src="assets/img/bootstraper-logo.png" alt="bootstraper logo">
</div>
<h6 class="mb-4 text-muted">Create new account</h6>
<form action="" method="">
<div class="mb-3 text-start">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" placeholder="Enter your name" required>
</div>
<div class="mb-3 text-start">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" placeholder="Enter your email" required>
</div>
<div class="mb-3 text-start">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" placeholder="Enter your password" required>
</div>
<!--
<div class="mb-3">
<input type="password" class="form-control" placeholder="Confirm password" required>
</div>
-->
<div class="mb-3 text-start">
<div class="form-check">
<input class="form-check-input" name="confirm" type="checkbox" value="" id="check1">
<label class="form-check-label" for="check1">
I agree to the <a href="#" tabindex="-1">terms and policy</a>.
</label>
</div>
</div>
<button class="btn btn-primary mb-4" style="width:100%">Register</button>
</form>
<p class="mb-0 text-muted">Allready have an account? <a href="login.html">Log in</a></p>
</div>
</div>
</div>
</div>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>