-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (100 loc) · 3.48 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
<!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" />
<title>Project: Sign-Up Form</title>
<link href="styles.css" rel="stylesheet" />
<link href="https://fonts.cdnfonts.com/css/common-pixel" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main>
<div id="side-image">
<div id="logo-bg">
<div id="logo">
<img src="./life.png" />
<h3>TSV-STACKS</h3>
</div>
</div>
<p id="img-source">
Photo by
<a
href="https://unsplash.com/@villxsmil?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Luis Villasmil</a
>
on
<a
href="https://unsplash.com/s/photos/gaming?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Unsplash</a
>
</p>
</div>
<div id="main-content">
<h1>Sign-Up For More Content</h1>
<p>
Hotline Miami was the first <em>Indie</em> game I ever played and it
opened up a whole new side of gaming for me. Seeing small studios and
single devs making fun and unique games is incredibly inspiring.
</p>
<p>
Some of my favourites include: Hollow Knight, Slay the Spire, Vampire
Survivors, Factorio & Stardew Valley.
</p>
<p>Give rise to the gamer inside you!</p>
<fieldset>
<h3>Let's get started!</h3>
<div class="parent">
<div class="cell">
<label for="first-name">First Name</label>
<input required type="text" id="first-name" />
</div>
<div class="cell">
<label for="last-name">Last Name</label>
<input required type="text" id="last-name" />
</div>
<div class="cell">
<label for="email">email</label>
<input required type="email" id="email" />
</div>
<div class="cell">
<label for="phone-number">Phone Number</label>
<input type="number" id="phone-number" />
</div>
<div class="cell">
<label for="password">Password</label>
<input
minlength="8"
required
type="password"
id="password"
class="error"
/>
</div>
<div class="cell">
<label for="password-confirm">Confirm Password</label>
<input
minlength="8"
required
type="password"
id="password-confirm"
class="error"
/>
</div>
</div>
</fieldset>
<button class="btn" onclick="validatePassword()">Create Account</button>
<div><span id="password-message"></span></div>
<div><span id="password-matched"></span></div>
<p>Already have an account? <a href="#">Log in</a></p>
</div>
</main>
<script src="script.js"></script>
</body>
</html>