-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
59 lines (46 loc) · 1.72 KB
/
index1.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
<!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>Login Form</title>
<link rel="stylesheet" href="stylelog.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html">Home</a>
<a href="second.html">About</a>
<a href="tabs.html">Books</a>
<a href="review.html">Reviews</a>
<!-- <button class="btnLogin-popup">Login</button> -->
</nav>
</header>
<div class="logo" style="position:relative ;left:-340px; top:-260px">
</div>
<div class="wrapper">
<form action="index.html">
<h1>LOGIN</h1>
<div class="input-box">
<input type="text" placeholder="Username" required>
<i class='bx bxs-user' ></i>
</div>
<div class="input-box">
<input type="password" placeholder="Password" required>
<i class='bx bxs-lock-alt'></i>
</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="register-link">
<p>Dont have an account? <a href="index2.html">Register</a></p>
</div>
</form>
</div>
<py-script></py-script>
</body>
</html>