-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (71 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<video id="bgv" src="media/75832-557015876_medium.mp4" autoplay muted loop></video>
<div class="container">
<div class="Logo">
<img
src="https://cdn.statically.io/gh/TheOdinProject/curriculum/5f37d43908ef92499e95a9b90fc3cc291a95014c/html_css/project-sign-up-form/odin-lined.png"
alt=""
/>
<h1 id="head">ODIN PROJECT</h1>
</div>
<div class="wrapper">
<h2>Welcome</h2>
<form action="" method="post">
<div class="formgroup">
<label for="fname">First Name</label>
<input type="text" id="fname" name="fname" required maxlength="20"/>
</div>
<div class="formgroup">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lname" required maxlength="20"/>
</div>
<div class="formgroup">
<label for="email">Email</label>
<input type="email" id="email" name="email" required />
</div>
<div class="formgroup">
<label for="tel">Phone number</label>
<input type="tel" id="tel" name="tel" required/>
</div>
<div class="formgroup password">
<label for="password">Password</label>
<input
type="password"
id="password"
name="password"
required
pattern="^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$"
title="Must contain at least one uppercase letter, one lowercase letter, one number, and one special character, and be at least 8 characters long"
/>
</div>
<div class="formgroup password">
<label for="confirmPassword">Confirm Password</label>
<input
type="password"
id="confirmPassword"
name="password"
required
pattern="^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$"
title="Must contain at least one uppercase letter, one lowercase letter, one number, and one special character, and be at least 8 characters long"
/>
</div>
<div class="Signin">
<input type="Submit" />
</div>
</form>
<div class="login">
<span>Already Have an account?</span>
<a href="">Log in</a>
</div>
</div>
</div>
</body>
</html>