-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup-mwk.html
39 lines (32 loc) · 1.27 KB
/
signup-mwk.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup</title>
</head>
<link rel="stylesheet" href="index-mwk.css">
<body>
<div class="login">
<form name='form-login'>
<h1>REGISTER</h1>
<label for="name">Email</label>
<input type="email" id="name" placeholder="Username" required>
<label for="pw">Password</label>
<input type="password"
id= "pw"
placeholder="Password" required>
<ul class="helper-text">
<li class="length">Must be at least 8 characters long.</li>
<li class="lowercase">Must contain a lowercase letter.</li>
<li class="uppercase">Must contain an uppercase letter.</li>
<li class="special">Must contain a number or special character.</li>
</ul>
<input id="rgstr_btn" type="submit" value="Register" onclick="store()">
<div class="link"><a href="login-mwk.html">Go to login page</a></div>
</form>
</div>
</body>
</html>
<script src="signup-mwk.js"></script>