-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (74 loc) · 3.21 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
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign-up</title>
<link rel="stylesheet" type="text/css" href="./styles/index.css">
<script src="./scripts/validateData.js" defer></script>
</head>
<body>
<section id="bg">
<img src="./assets/images/saul_goodman.png" id="bgImg">
<div id="bgTextContainer">
<h1>saulbook</h1>
</div>
</section>
<main id="content">
<section id="topSection">
<h1>This is not a real online service!
You know you need something like this
in your life to help you realize your
deepest dreams.
<br>
Sign up <i>now</i> to get started.
<br>
<br>
You <i>know</i> you want to.
</h1>
</section>
<section id="middleSection">
<h1 style="margin-top:20px">Let's do this!</h1>
<form id="signUpForm">
<section>
<div>
<label for="firstName">FIRST NAME</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div>
<label for="lastName">LAST NAME</label>
<input type="text" id="lastName" name="lastName" required>
</div>
</section>
<section>
<div>
<label for="email">EMAIL</label>
<input type="email" id="email" name="email" required>
</div>
<div>
<label for="phoneNumber">PHONE NUMBER</label>
<input type="tel" id="phoneNumber" name="phoneNumber" required>
</div>
</section>
<section>
<div>
<label for="password">PASSWORD</label>
<input type="password" id="password" name="password" required>
</div>
<div>
<label for="confirmPassword">CONFIRM PASSWORD</label>
<input type="password" id="confirmPassword" name="confirmPassword" required>
</div>
</section>
<p id="error" style="display:none;">Please make sure your passwords match.</p>
</form>
</section>
<section id="bottomSection">
<button type="submit" id="createAccountButton" form="signUpForm">Create Account</button>
<p style="margin-top:20px;font-family:roboto-light">
Already have an account? <a href="/">Log in</a>
</p>
</section>
</main>
</body>
</html>