-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 1.95 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
<!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="shortcut icon" href="./favicon.png" type="image/png">
<title>Sign up</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/form.css">
</head>
<body>
<div class="background"></div>
<main>
<div class="left-column">
<h1 class="main-title">Sign up</h1>
<div class="bottom-links">
<a href="#">Privacy policy</a>
<span>&</span>
<a href="#">terms of service</a>
</div>
</div>
<div class="right-column">
<div class="close">x</div>
<form class="form">
<div class="form-row">
<label for="username">Username</label>
<input id="username" placeholder="Your username goes here..." type="text" required>
</div>
<div class="form-row">
<label for="email">Email</label>
<input id="email" placeholder="Email..." type="email" required>
</div>
<div class="form-row">
<label for="pass">Password</label>
<input id="pass" placeholder="Password" type="password" required>
</div>
<div class="form-row">
<label for="re-pass">Repeat password</label>
<input id="re-pass" placeholder="Repeat password" type="password" required>
</div>
<div class="form-row flex-row">
<button type="submit">Get started</button>
<span>or</span>
<a href="./sign-in/">Sign in</a>
</div>
</form>
</div>
</main>
</body>
</html>