-
Notifications
You must be signed in to change notification settings - Fork 0
/
h1.html
62 lines (49 loc) · 1.75 KB
/
h1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<title>User Dashboard - InstiBanc</title>
<style>
/* Styles already defined from previous pages */
/* ... */
/* Animation Styles */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animated {
animation: fadeIn 1.5s;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<!-- ... Navigation Bar Content ... -->
</nav>
<div class="container mt-5 animated">
<h2>Welcome back, [Username]!</h2>
<p>Your last login was on [Last Login Date].</p>
<h3>Your Dashboard:</h3>
<div class="user-details">
<!-- You can insert details and widgets relevant to the user here -->
<div class="balance">
Current Balance: $[Amount]
</div>
<div class="recent-transactions">
<!-- Display a list of recent transactions or other relevant user details -->
</div>
</div>
</div>
<footer style="background-color: #2c3e50; color: white; padding: 20px 0; text-align: center;">
<p>© 2023 InstiBanc. All Rights Reserved.</p>
<p><a href="#" style="color: white; text-decoration: none; margin-right: 15px;">Terms of Service</a> | <a href="#" style="color: white; text-decoration: none; margin-left: 15px;">Privacy Policy</a></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>