-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.html
32 lines (29 loc) · 985 Bytes
/
dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>User Dashboard (Mockup)</title>
</head>
<body>
<div class="container">
<h2>Welcome, User1!</h2>
<p>Email: [email protected]</p>
<p>Join Date: 2023-01-01</p>
<!-- Example of showing borrowed books (static for demo) -->
<h3>Your Borrowed Books</h3>
<ul>
<li>The Great Gatsby - Borrowed on: 2024-10-01 (Due: 2024-10-21)</li>
<li>1984 by George Orwell - Borrowed on: 2024-10-05 (Due: 2024-10-25)</li>
</ul>
<!-- Fines Section -->
<h3>Your Fines (Mockup)</h3>
<ul>
<li>Fine ID: 101 - Amount: $5.00 - Status: Unpaid</li>
<li>Fine ID: 102 - Amount: $2.50 - Status: Unpaid</li>
</ul>
<a href="index.html">Logout</a>
</div>
</body>
</html>