-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (101 loc) · 3.19 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Odin Project - Sign Up!</title>
</head>
<body>
<header>
<img class="logo" src="imgs/odin-lined.png" alt="odin_logo" />
<nav>
<ul class="nav_links">
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Gallery</a></li>
</ul>
</nav>
<a class="cta" href="#"><button>Contact Us</button></a>
</header>
<section class="container">
<div class="grid-item grid1">
<div class="logo_div">
<img src="imgs/odin-lined.png" alt="odin logo" />
<p>ODIN</p>
</div>
<div class="photo_credit">
<p>
Photo by <a href="https://unsplash.com/@loicleray">Loic Leray</a>
</p>
</div>
</div>
<div class="grid-item grid2">
<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.
</p>
<p>Sign up <em>now</em> to get started.</p>
<form action="/formurl" action="post">
<div class="form_format">
<h2>Let's do this!</h2>
<div class="input_group"><label for="first_name">First Name</label>
<input
type="text"
name="first_name"
id="first_name"
placeholder="John"
required
/></div>
<div class="input_group"><label for="last_name">Last Name</label>
<input
type="text"
name="last_name"
id="last_name"
placeholder="Smith"
required
/></div>
<div class="input_group"><label for="email">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="[email protected]"
required
/></div>
<div class="input_group"><label for="phone_number">Phone Number</label>
<input
type="tel"
name="phone_number"
id="phone_number"
placeholder="555-555-5555"
required
/></div>
<div class="input_group"><label for="password">Password</label>
<input
type="password"
name="password"
id="password"
placeholder="********"
required
/></div>
<div class="input_group"><label for="password_confirm">Confirm Password</label>
<input
type="password_confirm"
name="password_confirm"
id="password_confirm"
placeholder="********"
required
/></div>
</div>
<div class="input_group button_item">
<button type="submit">Create Account</button>
</div>
</form>
<p>Already have an account? <a href="#">Log in</a></p>
</div>
</section>
</div>
</body>
</html>