-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
152 lines (97 loc) · 5.99 KB
/
sign-up.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!doctype html>
<html lang="en">
<head>
<link rel="icon" href="https://i.postimg.cc/h4zGvdTP/tiger-Head-transformed.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>TigerNOte-Sign Up Page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<link href="bootstrap.min.css" rel="stylesheet">
<link href="bootstrap-icons.css" rel="stylesheet">
<link rel="stylesheet" href="slick.css"/>
<link href="homepage.css" rel="stylesheet">
</head>
<body>
<section class="preloader">
<div class="spinner">
<span class="sk-inner-circle"></span>
</div>
</section>
<main>
<section class="sign-in-form section-padding">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto col-12">
<h1 class="hero-title text-center mb-5">Sign Up</h1>
<div class="social-login d-flex flex-column w-50 m-auto">
<a href="#" class="btn custom-btn social-btn mb-4">
<i class="bi bi-google me-3"></i>
Continue with Google
</a>
<a href="#" class="btn custom-btn social-btn">
<i class="bi bi-facebook me-3"></i>
Continue with Facebook
</a>
</div>
<div class="div-separator w-50 m-auto my-5"><span>or</span></div>
<div class="row">
<div class="col-lg-8 col-11 mx-auto">
<form role="form" method="post">
<div class="form-floating">
<input type="email" name="email" id="email" pattern="[^ @]*@[^ @]*" class="form-control" placeholder="Email address" required>
<label for="email">Email address</label>
</div>
<div class="form-floating my-4">
<input type="password" name="password" id="password" pattern="[0-9a-zA-Z]{4,10}" class="form-control" placeholder="Password" required>
<label for="password">Password</label>
<p class="text-center">* shall include 0-9 a-z A-Z in 4 to 10 characters</p>
</div>
<div class="form-floating">
<input type="password" name="confirm_password" id="confirm_password" pattern="[0-9a-zA-Z]{4,10}" class="form-control" placeholder="Password" required>
<label for="confirm_password">Password Confirmation</label>
</div>
<button type="submit" class="btn custom-btn form-control mt-4 mb-3">
Create account
</button>
<p class="text-center">Already have an account? Please <a href="sign-in.html">Sign In</a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-10 me-auto mb-4">
<h4 class="text-white mb-3"><a href="index.html">Tiger</a>Note</h4>
<br>
</div>
<div class="col-lg-5 col-8">
<h5 class="text-white mb-3">Sitemap</h5>
<ul class="footer-menu d-flex flex-wrap">
<li class="footer-menu-item"><a href="index.html" class="footer-menu-link">Home</a></li>
<li class="footer-menu-item"><a href="PomodoroTimer.html" class="footer-menu-link">Pomorodo Timer</a></li>
<li class="footer-menu-item"><a href="document.html" class="footer-menu-link">Document</a></li>
<li class="footer-menu-item"><a href="calenderPage.html" class="footer-menu-link">Calendar</a></li>
<li class="footer-menu-item"><a href="note.html" class="footer-menu-link">Note</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script src="jquery.min.js"></script>
<script src="bootstrap.bundle.min.js"></script>
<script src="Headroom.js"></script>
<script src="jQuery.headroom.js"></script>
<script src="slick.min.js"></script>
<script src="custom.js"></script>
</body>
</html>