-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (53 loc) · 1.8 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
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SignIn&SignUp</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script
src="https://kit.fontawesome.com/64d58efce2.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<form action="" class="sign-in-form">
<h2 class="title">Sign In</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" />
</div>
<input type="submit" value="Login" class="btn solid" />
</div>
</form>
</div>
</form>
</div>
</div>
<div class="panels-container">
<div class="panel left-panel">
<div class="content">
<h3>One of us?</h3>
<p>sign in to continue.</p> <a href="1.html"><button class="cta">Sign in</button></a>
</div>
<img src="./img/log.svg" class="image" alt="">
</div>
<div class="panel right-panel">
<div class="content">
<h3>New Here?</h3>
<p>Join the family</p> <a href="2.html"><button class="cta">Get started</button></a>
</div>
<img src="./img/register.svg" class="image" alt="">
</div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>