132 lines
4.9 KiB
PHP
132 lines
4.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Organ Donation & Management System</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #f0f2f5;
|
|
}
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
color: #0d6efd !important;
|
|
}
|
|
.hero-section {
|
|
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/3992933/pexels-photo-3992933.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
padding: 120px 0;
|
|
text-align: center;
|
|
}
|
|
.hero-section h1 {
|
|
font-size: 3.8rem;
|
|
font-weight: 700;
|
|
}
|
|
.hero-section p {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 40px;
|
|
}
|
|
.btn-primary {
|
|
background-color: #0d6efd;
|
|
border-color: #0d6efd;
|
|
padding: 12px 25px;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
.btn-primary:hover {
|
|
background-color: #0b5ed7;
|
|
border-color: #0a58ca;
|
|
}
|
|
.info-section {
|
|
padding: 80px 0;
|
|
}
|
|
.info-card {
|
|
background-color: #ffffff;
|
|
border-radius: 10px;
|
|
padding: 30px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
height: 100%;
|
|
}
|
|
.info-card h2 {
|
|
color: #0d6efd;
|
|
margin-bottom: 20px;
|
|
}
|
|
.footer {
|
|
background-color: #343a40;
|
|
color: white;
|
|
padding: 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">OrganDonation</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="donor_registration.php">Become a Donor</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="hospital_registration.php">Hospital Registration</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="hospital_login.php">Hospital Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="admin/login.php">Admin Login</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="hero-section">
|
|
<div class="container">
|
|
<h1>A Gift of Life, A Legacy of Hope</h1>
|
|
<p>Join our community to make a difference through organ donation.</p>
|
|
<a href="donor_registration.php" class="btn btn-primary btn-lg">Register as a Donor</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container info-section">
|
|
<div class="row g-4">
|
|
<div class="col-md-6">
|
|
<div class="info-card">
|
|
<h2>For Donors</h2>
|
|
<p>Register as an organ donor and give the gift of life. Your selfless act can save up to eight lives.</p>
|
|
<a href="donor_registration.php" class="btn btn-primary">Register Now</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="info-card">
|
|
<h2>For Hospitals</h2>
|
|
<p>Register your hospital to connect with donors and manage organ requests seamlessly and efficiently.</p>
|
|
<a href="hospital_registration.php" class="btn btn-primary">Register Now</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer text-center">
|
|
<div class="container">
|
|
<p>© 2025 OrganDonation.com. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |