-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.html
165 lines (150 loc) · 8.92 KB
/
Admin.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LIFE FLOW</title>
<link rel="icon" href="assets/Blood_Bank_Favicon.webp" type="image/webp">
<!-- <link href="Home.css" rel="stylesheet"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<nav class="flex justify-between items-center bg-red-600 p-4">
<!-- Logo and Title Section -->
<div class="flex items-center space-x-3">
<i class="fas fa-tint text-white text-4xl"></i>
<p class="text-3xl font-semibold text-white">Life Flow</p>
</div>
<!-- Navigation Links Section -->
<ul class="flex space-x-6">
<li class="flex items-center space-x-2">
<i class="fas fa-home text-white"></i>
<a href="index.html" class="text-white text-lg font-medium hover:text-red-200 transition-colors">Home</a>
</li>
<li class="flex items-center space-x-2">
<i class="fas fa-info-circle text-white"></i>
<a href="AboutUs.html" class="text-white text-lg font-medium hover:text-red-200 transition-colors">About
Us</a>
</li>
<li class="flex items-center space-x-2">
<i class="fas fa-search text-white"></i>
<a href="/Blood_Availability_Search.html" class="text-white text-lg font-medium hover:text-red-200 transition-colors">Looking For
Blood</a>
</li>
<div id=" userSection" class="flex items-center space-x-3">
<a href="DonorLogin.html" id="userLink"
class="flex items-center space-x-2 text-white hover:text-red-200 transition-colors">
<img src="assets/user_default.jpeg" alt="User Icon"
class="user-logo w-8 h-8 rounded-full border-2 border-white">
<span id="userName">Guest</span>
</a>
</div>
</nav>
<!-- Admin Header -->
<div class="text-center mb-8 mt-4">
<h1 class="text-4xl font-bold text-red-600 flex items-center justify-center">
<i class="fas fa-user-cog mr-3"></i> Admin Dashboard
</h1>
<p class="text-gray-600 mt-3 text-lg">Manage blood donation camps, doctors, and hospitals efficiently.</p>
</div>
<!-- Navigation Cards -->
<div class="flex flex-wrap justify-center gap-8 mb-4">
<!-- Camp Section -->
<div class="bg-white shadow-lg rounded-lg p-6 h-60 w-80 cursor-pointer hover:shadow-2xl transition-transform transform hover:scale-105 flex flex-col justify-between">
<h2 class="text-xl font-semibold flex items-center text-red-500">
<i class="fas fa-campground mr-3"></i> Add New Camp
</h2>
<p class="text-gray-600 mt-2">Organize and manage blood donation camps, including location, date, and time.</p>
<button class="mt-4 bg-red-500 text-white px-4 py-2 rounded hover:bg-red-600"><a href="AddCamp.html">Add Camp</a></button>
</div>
<!-- Doctor Section -->
<div class="bg-white shadow-lg rounded-lg p-6 h-60 w-80 cursor-pointer hover:shadow-2xl transition-transform transform hover:scale-105 flex flex-col justify-between">
<h2 class="text-xl font-semibold flex items-center text-blue-500">
<i class="fas fa-user-md mr-3"></i> Add New Doctor
</h2>
<p class="text-gray-600 mt-2">Register new doctors and manage their specialization and availability.</p>
<button class="mt-4 bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600"><a href="AddDoctor.html">Add Doctor</a></button>
</div>
<!-- Hospital Section -->
<!-- <div class="bg-white shadow-lg rounded-lg p-6 h-60 w-80 cursor-pointer hover:shadow-2xl transition-transform transform hover:scale-105 flex flex-col justify-between" onclick="location.href='add_hospital.html'">
<h2 class="text-xl font-semibold flex items-center text-green-500">
<i class="fas fa-hospital mr-3"></i> Add New Hospital
</h2>
<p class="text-gray-600 mt-2">Register hospitals with facilities, services, and contact information.</p>
<button class="mt-4 bg-green-500 text-white px-4 py-2 rounded hover:bg-green-600">Add Hospital</button>
</div> -->
</div>
<footer class="bg-gray-800 text-white py-12 w-full">
<div class="px-6 sm:px-12">
<!-- Footer Main Sections -->
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-8">
<!-- Quick Links -->
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-blue-400 hover:text-blue-600">Home</a></li>
<li><a href="Blood_Availability_Search.html" class="text-blue-400 hover:text-blue-600">Blood Availability</a></li>
<li><a href="Blood_Bank_Directory.html" class="text-blue-400 hover:text-blue-600">Blood Bank Directory</a></li>
<li><a href="Blood_Donation_Camps.html" class="text-blue-400 hover:text-blue-600">Donate Now</a></li>
<li><a href="contactUs.html" class="text-blue-400 hover:text-blue-600">Contact Us</a></li>
</ul>
</div>
<!-- Contact Info -->
<div>
<h3 class="text-lg font-semibold mb-4">Contact Info</h3>
<ul>
<li class="text-sm">Email: <a href="mailto:support@example.com"
class="text-blue-400 hover:text-blue-600">support@example.com</a></li>
<li class="text-sm">Phone: <a href="tel:+1234567890"
class="text-blue-400 hover:text-blue-600">+1 (234) 567-890</a></li>
<li class="text-sm">Address: 123 Street, City, Country</li>
</ul>
</div>
<!-- Follow Us -->
<div>
<h3 class="text-lg font-semibold mb-4">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="text-blue-400 hover:text-blue-600" target="_blank" aria-label="Facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-blue-400 hover:text-blue-600" target="_blank" aria-label="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-blue-400 hover:text-blue-600" target="_blank" aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-blue-400 hover:text-blue-600" target="_blank" aria-label="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<!-- Legal Information -->
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-blue-400 hover:text-blue-600">Privacy Policy</a></li>
<li><a href="#" class="text-blue-400 hover:text-blue-600">Terms & Conditions</a></li>
<li><a href="#" class="text-blue-400 hover:text-blue-600">Accessibility</a></li>
<li><a href="#" class="text-blue-400 hover:text-blue-600">Cookie Policy</a></li>
</ul>
</div>
</div>
<!-- Footer Bottom Section -->
<div class="mt-8 border-t border-gray-600 pt-6 text-center text-sm">
<p>© 2025 LIFE FLOW Pvt Ltd. All rights reserved.</p>
<p class="text-gray-400">Last Updated: Jan 6, 2025</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js"
integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy"
crossorigin="anonymous"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="script.js"></script>
</body>
</html>