-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.82 KB
/
Copy pathindex.html
File metadata and controls
49 lines (48 loc) · 1.82 KB
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
<!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>Sign Up</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<main class="container">
<div class="left-column">
<h1 class="main-title">Sign Up</h1>
<div class="bottom-links">
<a href="#" class="link">Privacy policy</a>
<span class="symbol">&</span>
<a href="#" class="link">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" type="text" placeholder="Username" required>
</div>
<div class="form-row">
<label for="email">Email</label>
<input id="email" type="email" placeholder="Email" required>
</div>
<div class="form-row">
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password" required>
</div>
<div class="form-row">
<label for="re-pass">Repeat password</label>
<input id="re-pass" type="password" placeholder="Repeat password" required>
</div>
<div class="form-row">
<button type="submit">Get started</button>
<span>or</span>
<a href="./sign-in/">Sign In</a>
</div>
</form>
</div>
</main>
</body>
</html>