-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
43 lines (34 loc) · 1.1 KB
/
index.php
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
<?php include('dbcon.php');
include('includes/header.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Blood Donation Management System</title>
</head>
<body>
<?php
include('includes/navbar.php');
?>
<div class="container-fluid h-100 bg-grey">
<div class="row">
<div class="title text-white text-center my-3">
<h1>Donate Blood to Save Lives!</h1>
<p>Your drop of blood can build an ocean of happiness!</p>
<a type="button" class="btn btn-success" target="_blank" href="usersignup.php">Register as Donor</a>
</div><!-- /.bg -->
</div>
<div class="container text-center ">
<img src="img/bg3.jpeg" alt="" style="width: 400px; height:fit-content">
</div>
</div>
</body>
<!-- <?php
include('includes/footer.php');
?> -->
</html>