-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Night Owls Sign In</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="first-half">
<h1>Night Walkers</h1>
<a href="https://unsplash.com/@chengfengrecord">Image by Cheng Feng</a>
</div>
<div class="second-half">
<div class="toptext-content">
<p class="mainp">We night owls don't sleep in the dark. The
lights, the air, the people; all different at night.
Want to be part of it?</p>
</div>
<div class="form-container">
<form>
<legend>Sign up</legend>
<ul class="ulOne">
<li>
<label for="first_name">First name</label>
<input type="text" if="first_name">
</li>
<li>
<label for="last_name">Last name</label>
<input type="text" id="last_name">
</li>
<li>
<label for="mail">Email</label>
<input type="email" id="mail">
</li>
<li>
<label for="user_number">Phone number</label>
<input type="tel">
</li>
<li>
<label for="user_password">Password</label>
<input type="password" id="id_password">
</li>
<li>
<label for="correct_password">Confirm Password</label>
<input type="password" id="correct_password">
</li>
</ul>
<button type="submit">Create Account</button>
<p class="lower-link">Already have an account? <a href="index.html">log in here.</a></p>
</form>
</div>
</div>
</body>
</html>