-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.htm
More file actions
30 lines (29 loc) · 1.14 KB
/
index.htm
File metadata and controls
30 lines (29 loc) · 1.14 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
<!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="stylesheet" href="./assets/style.css">
<title>Login</title>
</head>
<body>
<div class='bold-line'></div>
<div class='container'>
<div class='window'>
<div class='overlay'></div>
<div class='content'>
<div class='welcome'>Hello There!</div>
<div class='subtitle'>We're almost done. Before using our services you need to create an account.</div>
<div class='input-fields'>
<input type='text' placeholder='Username' class='input-line full-width'></input>
<input type='email' placeholder='Email' class='input-line full-width'></input>
<input type='password' placeholder='Password' class='input-line full-width'></input>
</div>
<div class='spacing'>or continue with <span class='highlight'>Facebook</span></div>
<div><button class='ghost-round full-width'>Create Account</button></div>
</div>
</div>
</div>
</body>
</html>