-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (79 loc) · 3.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login & Registration</title>
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/icons8-form-32.png">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/responsive.css">
</head>
<body>
<header>
<h2 class="logo">Logo</h2>
<button class="hamburguer"></button>
<nav class="navigation">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
<button class="btnLogin-popup">Login</button>
</nav>
</header>
<div class="wrapper">
<span class="icon-close"><img class="close_btn" src="./src/images/close.png" alt="close"></span>
<div class="form-box login">
<h2>Login</h2>
<form action="#">
<div class="input-box">
<img src="./src/images/email.png" alt="user">
<input type="email" required>
<label for="email">Email</label>
</div>
<div class="input-box">
<img src="./src/images/lock.png" alt="password">
<input type="password" required>
<label for="password">Password</label>
</div>
<div class="remember-forgot">
<label><input type="checkbox">Remember me</label>
<a href="#">Forgot password?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="login-register">
<p class="different">Don't have an account? <a href="#" class="register-link">Register</a></p>
</div>
</form>
</div>
<div class="form-box register">
<h2>Registration</h2>
<form action="#">
<div class="input-box">
<img src="./src/images/user.png" alt="user">
<input type="text" required>
<label for="text">Username</label>
</div>
<div class="input-box">
<img src="./src/images/email.png" alt="user">
<input type="email" required>
<label for="email">Email</label>
</div>
<div class="input-box">
<img src="./src/images/lock.png" alt="password">
<input type="password" required>
<label for="password">Password</label>
</div>
<div class="remember-forgot">
<label><input type="checkbox">I agree to the terms & conditions</label>
</div>
<button type="submit" class="btn">Register</button>
<div class="login-register">
<p class="different">Already have an account? <a href="#" class="login-link">Login</a></p>
</div>
</form>
</div>
</div>
<script type="text/javascript" src="./src/js/index.js"></script>
</body>
</html>