-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
64 lines (53 loc) · 2.18 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
<!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 css -->
<link rel="stylesheet" href="./style.css">
<!-- icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<title>Login with us</title>
</head>
<body>
<div class=" flex-r container">
<div class="flex-r login-wrapper">
<div class="login-text">
<div class="logo">
<span><i class="fab fa-speakap"></i></span>
<span>Coders</span>
</div>
<h1>Sign Up</h1>
<p>It's not long before you embark on this journey! </p>
<form class="flex-c">
<div class="input-box">
<span class="label">E-mail</span>
<div class=" flex-r input">
<input type="text" placeholder="[email protected]">
<i class="fas fa-at"></i>
</div>
</div>
<div class="input-box">
<span class="label">Password</span>
<div class="flex-r input">
<input type="password" placeholder="8+ (a, A, 1, #)">
<i class="fas fa-lock"></i>
</div>
</div>
<div class="check">
<input type="checkbox" name="" id="">
<span>I've read and agree with T&C</span>
</div>
<input class="btn" type="submit" value="Create an Account">
<span class="extra-line">
<span>Already have an account?</span>
<a href="#">Sign In</a>
</span>
</form>
</div>
</div>
</div>
</body>
</html>