-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
72 lines (65 loc) · 2.16 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div align="center" class="container">
<div class="jumbotron">
<h1><b>Lifering</b><img src="assets/0lifering.jpg" class="img img-responsive"></h1>
<p>An efficient organ donation management system</p>
</div>
</div>
<div class="container">
<p class="bg-primary">
<h3>Our aim is to meet the challenging requirement of modern day to efficiently collect and transplant organs during emergency.</h3>
</p>
<p>
<a href="userty.php"><button type="button" class="btn btn-primary active">Join Us</button></a>
</p>
<br>
<!-- <div>
<p class="bg-primary">
<h3>Registered users can login here</h3>
</p>
<p>
<a href="index.php"><button type="button" class="btn btn-primary active">Login</button></a>
</p>
</div> -->
</div>
</body>
</html>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" align="center">
<div class="item active">
<img src="assets/Organ-donation-fact.jpg" alt="Los Angeles">
</div>
<div class="item">
<img src="assets/organ-donation.jpg" alt="Chicago">
</div>
<div class="item">
<img src="assets/brain-death.jpg" alt="New York">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>