-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
71 lines (71 loc) · 2.57 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BookShelf Login Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> <!-- For the icon -->
</head>
<body>
<header>
<div class="logo">
<i class="fas fa-book"></i>
<span>BookShelf</span>
</div>
</header>
<main class="main-content">
<div class="book-titles">
<h2>Pick your Genre</h2>
<ul>
<li>
<img src="book1.jpg" alt="Book 1">
<span>Romance</span>
</li>
<li>
<img src="book2.jpg" alt="Book 2">
<span>Fantasy</span>
</li>
<li>
<img src="book3.jpg" alt="Book 3">
<span>Mystery</span>
</li>
<li>
<img src="book4.jpg" alt="Book 4">
<span>Horror</span>
</li>
<li>
<img src="book5.jpg" alt="Book 5">
<span>Science Fiction</span>
</li>
<li>
<img src="book5.jpg" alt="Book 5">
<span>Autobiography</span>
</li>
</ul>
</div>
<div class="explore-section">
<h1>BookShelf & <br><span>Explore the World of</span> Literature</h1>
<button class="cn"><a href="#">JOIN US</a></button>
</div>
<div class="container">
<form id="loginForm" action="welcome.html" method="GET">
<h2>Login</h2>
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Login</button>
<div class="signup-link">
<p>Don't have an account? <a href="signup.html">Sign Up</a></p>
</div>
</form>
</div>
</main>
<script src="script.js"></script>
</body>
</html>