-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 2.08 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
<!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="shortcut icon" href="./img/favicon.png" type="image/png">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/button.css">
<link rel="stylesheet" href="./css/form.css">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
</body>
<div class="background"></div>
<main class="container">
<div class="left-column">
<h1>Sign-up</h1>
<div class="bottom-texts">
<a href="#">Privacy policy</a>
<span>&</span>
<a href="#">Terms of service</a>
</div>
</div>
<div class="right-column">
<!-- <div class="bottom-texts"></div> -->
<div class="close">╳</div>
<form>
<div class="form-row">
<label for="username">Username</label>
<input id="username" type="text" placeholder="Your Username" required>
</div>
<div class="form-row">
<label for="email">Email</label>
<input id="email" type="email" placeholder="Your email" required>
</div>
<div class="form-row">
<label for="pass">Pasword</label>
<input id="pass" type="password" placeholder="Pasword" required>
</div>
<div class="form-row">
<label for="repass">Repeat pasword</label>
<input id="repass" type="password" placeholder="Pasword" required>
</div>
<div class="form-row">
<button class="btn" type="submit">Get started</button>
<span>or</span>
<a href="./Sign-in/">Sign in</a>
</div>
</form>
</div>
</main>
</html>