-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (111 loc) · 3.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign-up Form</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="#" />
<link href="style.css" rel="stylesheet" />
<script src="script.js" defer></script>
</head>
<body>
<div class="left-section">
<img
src="images/nati-melnychuk-1_-EHQhkI_4-unsplash.jpg"
alt="Strawberries in white ceramic bowl with cereal"
class="background-image"
/>
<div class="odin-logo-card">
<img src="images/odin-lined.png" alt="Odin logo" />
<h1>
<a href="https://www.theodinproject.com/" target="_blank">ODIN</a>
</h1>
</div>
<p class="image-credit">
Photo by
<a href="https://unsplash.com/@natinati" target="_blank"
>Nati Melnychuk</a
>
on
<a href="https://unsplash.com/photos/1_-EHQhkI_4" target="_blank"
>Unsplash</a
>
</p>
</div>
<main>
<p>
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 <em>now</em> to get started.
</p>
<p>You <em>know</em> you want to.</p>
<form action="" method="get" onsubmit="return validateForm();">
<fieldset>
<legend>Let's do this!</legend>
<div class="input-container">
<div>
<label for="first_name">FIRST NAME</label>
<input
type="text"
id="first_name"
name="first_name"
minlength="1"
maxlength="50"
required
/>
</div>
<div>
<label for="last_name">LAST NAME</label>
<input
type="text"
id="last_name"
name="last_name"
minlength="1"
maxlength="50"
required
/>
</div>
<div>
<label for="email">EMAIL</label>
<input type="email" id="email" name="email" required />
</div>
<div>
<label for="phone_number">PHONE NUMBER</label>
<input
type="tel"
id="phone_number"
name="phone_number"
minlength="8"
maxlength="11"
required
/>
</div>
<div>
<label for="password">PASSWORD</label>
<input
type="password"
id="password"
name="password"
minlength="8"
required
/>
<span></span>
</div>
<div>
<label for="confirm_password">CONFIRM PASSWORD</label>
<input
type="password"
id="confirm_password"
name="confirm_password"
required
/>
<span></span>
</div>
</div>
</fieldset>
<button type="submit">Create Account</button>
</form>
<p>Already have an account? <a href="#">Log in</a></p>
</main>
</body>
</html>