-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (42 loc) · 1.78 KB
/
index.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
<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">
<meta name="description" content="Mouldy Potatoes 🥔 Film Reviews - Potatoes know best">
<link rel="stylesheet" href="./public/styles.css">
<title>Mouldy Potatoes 🥔 Profile Page</title>
</head>
<body>
<div class="flex flex--column box ">
<div class="margin--bottom">
<div class="bubble-2">
<h1>Create an Account 🥔</h1>
</div>
</div>
<form action="sign-up" method="POST" data-bitwarden-watching="1">
<label for="name">Name<span aria-hidden="true">*</span></label>
<div id="nameRequirements" class="requirements">
Name must be at least 2 characters
long.
</div>
<input type="text" id="name" name="name" aria-describedby="nameRequirements nameError" minlength="2" required=""
placeholder="Please enter your name">
<div id="nameError" class="error"></div>
<label for="email">Email<span aria-hidden="true">*</span></label>
<input type="email" id="email" name="email" placeholder="Enter your email" required
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,63}$">
<div id="emailError" class="error"></div>
<label for="password">Password<span aria-hidden="true">*</span></label>
<div id="passwordRequirements" class="requirements">
Passwords must be at least 5 characters
long.
</div>
<input placeholder="Enter your password" type="password" id="password" name="password"
aria-describedby="passwordError passwordRequirements" required="" minlength="5">
<div id="passwordError" class="error"></div>
<button>Sign up</button>
</form>
</div>
</body>
</html>