-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
157 lines (136 loc) · 4.13 KB
/
home.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
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
<?php
include "connection.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Wix.com Website Builder" />
<link rel="stylesheet" href="common.css">
<style>
body {
background-image: url('images/8.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.donors,.donorv,.storage,.receivers,.receiverv,.camps{
border-style: double;
border-radius: 25px;
text-align:center;
background:aquamarine;
opacity:0.4;
align-items: center;
width :500px;
}
.input {
width: 100%;
padding: 10px;
background: transparent;
border: none;
outline: none;
}
.line-box {
position: relative;
width: 100%;
height: 2px;
background: #BCBCBC;
}
.line {
position: absolute;
width: 0%;
height: 2px;
top: 0px;
left: 50%;
transform: translateX(-50%);
background: #8BC34A;
transition: ease .6s;
}
.input:focus+.line-box .line {
width: 100%;
}
.label-active {
top: -3em;
}
button {
display: inline-block;
padding: 12px 24px;
background: rgb(220, 220, 220);
font-weight: bold;
color: rgb(120, 120, 120);
border: none;
outline: none;
border-radius: 3px;
cursor: pointer;
transition: ease .3s;
}
button:hover {
background: #8BC34A;
color: #ffffff;
}
</style>
</head>
<body>
<div class="nav">
<div class="topnav">
<a class="active" href="welcome.html">Home</a>
<a href="contact.html">Contact</a>
</div>
</div>
<br>
<title>DROPS OF LIFE</title>
<center><img style="border-radius: 35px;" src="images/14.PNG" alt="Paris" ></center>
<br><br>
</div><br><BR>
<div align="center" class = "all">
<div class='donors'>
<a href="blood storage disp.php">BLOOD STORAGE</a><br>
</div><br>
<div class='donors'>
<a href="donor static.html">CREATE DONOR ACCOUNT </a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="up doner.php">UPDATE DONOR</a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="donor static disp.php">DISPLAY DONOR ACCOUNTS</a><br>
</div><br>
<div class = 'donorv'>
<a href="donor variable.html">FORM TO DONATE BLOOD</a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="donor variable disp.php">BLODD DONATIONS </a><br>
</div><br><BR>
<div class = 'receivers'>
<a href="receiver static.html">CREATE RECEIVER ACCOUNT </a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="up receiver.php">UPDATE RECEIVER</a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="receiver static disp.php">DISPLAY RECEIVER ACCOUNTS</a><br>
</div><br>
<div class = 'receiverv'>
<a href="receiver variable.php">FORM TO RECEIVE BLOOD</a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="receiver variable disp.php">RECEIVED BLOOD</a><br>
</div><br><BR>
<div class = 'camps'>
<a href="camps.html">CREATE CAMPS</a><br>
<div class="line-box">
<div class="line"></div>
</div>
<a href="camps disp.php">DISPLAY CAMPS</a><br>
</div>
</div>
</body>
</html>