-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Surrender your PII</title>
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=aleo:700" rel="stylesheet" />
<link href="style.css" rel="stylesheet">
</head>
<body>
<main>
<h1>Sign up for this very real service, which will cure your cancer and bring back your grandmother and make you say "WOW!"</h1>
<h1>Do it. Do it <em>now</em>.</h1>
<form>
<div id="form-card">
<div class="input-container container_fname">
<label for="fname">FIRST NAME</label>
<input type="text" id="fname" name="fname" placeholder="" required>
</div>
<div class="input-container container_lname">
<label for="lname">LAST NAME</label>
<input type="text" id="lname" name="lname" placeholder="" required>
</div>
<div class="input-container container_email">
<label for="email">EMAIL</label>
<input type="email" id="email" name="email" placeholder="" required>
</div>
<div class="input-container container_phone">
<label for="phone">PHONE NUMBER</label>
<input type="tel" id="phone" name="phone" placeholder="">
</div>
<div class="input-container container_password">
<label for="password">PASSWORD</label>
<input type="password" id="password" name="password" placeholder="" required>
</div>
<div class="input-container container_password2">
<label for="password2">CONFIRM PASSWORD</label>
<input type="password" id="password2" name="password2" placeholder="" required>
</div>
</div>
<button type="submit">Create Account</button>
<p>Already have an account? <a href="#">Log in</a></p>
</form>
</main>
<aside>
<div class="titlebar">
<img src="odin.png">
<h1 class="title-text">ODIN</h1>
</div>
<footer>
Photo by <a href="https://unsplash.com/@lucabravo?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Luca Bravo</a> on <a href="https://unsplash.com/photos/body-of-water-surrounded-by-pine-trees-during-daytime-ESkw2ayO2As?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
</footer>
</aside>
</body>
</html>