-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (178 loc) · 5.74 KB
/
index.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Plasma Bank BD</title>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Google+Sans"
as="style"
/>
<link rel="stylesheet" href="assets/css/minified/materializecss.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header>
<nav class="nav-extended nav-fixed transparent z-depth-1">
<div class="nav-wrapper">
<a href="index.html" class="brand-logo" id="logo">Plasma Bank BD</a>
<a href="#" class="sidenav-trigger menu" data-target="mobile-nav">
<i class="material-icons">menu</i>
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li>
<a
href="index.html"
class="btn-flat hover-underline-animation"
id="donor"
>Home</a
>
</li>
<li>
<a
href="#donorList"
class="btn-flat hover-underline-animation"
id="donor"
>Donor</a
>
</li>
<li>
<a
href="story.html"
class="btn-flat hover-underline-animation"
id="story"
>Story</a
>
</li>
<li>
<a
href="signin.html"
class="btn-flat hover-underline-animation"
id="signin"
>SignIn</a
>
</li>
<li>
<a
href="register.html"
class="btn-flat hover-underline-animation"
id="register"
>Register</a
>
</li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-nav">
<li><a href="index.html">Home</a></li>
<li><a href="#donorList">Donor</a></li>
<li><a href="story.html">Story</a></li>
<li><a href="signin.html">SignIn</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</header>
<main>
<div class="customContainer">
<!-- INITIAL SECTION -->
<div class="section">
<div class="row">
<div class="col s12 l6 m6">
<h3 id="bannerText">
Donate <span id="plasma">Plasma</span> <br />
Save <span id="life">Life</span>
</h3>
<span id="subBanner"
>Did you beat COVID-19?
<span id="congo">Congratualtions</span> on your heroic winning.
As you know you can also help others to beat Corona. Donate your
<a
href="https://en.wikipedia.org/wiki/Blood_plasma"
target="_blank"
>plasma</a
>
to others who are fighting to win against Corona. Your one bag
of plasma can save a life.
</span>
<br />
<a
href="register.html"
class="waves-effect waves-indigo btn-flat donorBtn"
>Become a donor</a
>
</div>
<div class="col s12 l6 m6">
<img
src="assets/img/bannerSVG.svg"
alt="banner"
class="responsive-img"
/>
</div>
</div>
</div>
<!-- TABLE SECTION -->
<div class="row" id="donorList">
<div class="col s12 l12 m12 center-align">
<img src="assets/img/list.svg" alt="list" class="icon" />
<h3 class="donor">
Donor List
</h3>
<div class="row">
<div class="input-field col s12 m6 l4">
<i class="material-icons prefix indigo-text text-lighten-3"
>search</i
>
<input
id="search"
type="text"
placeholder="Search for any info..."
autocomplete="off"
/>
</div>
</div>
<!-- <div class="custom-scrollbar"> -->
<table class="centered highlight responsive-table">
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th>Blood Group</th>
<th>Mobile Number</th>
<th>Availability Status</th>
</tr>
</thead>
<tbody id="filter_info">
<tr>
<td>Alvin</td>
<td>Mirpur</td>
<td>A+</td>
<td><a href="tel:018">018</a></td>
<td class="available">Available</td>
</tr>
<tr>
<td>Alvin</td>
<td>Mirpur</td>
<td>A+</td>
<td>018</td>
<td class="unavailable">Unavailable</td>
</tr>
</tbody>
</table>
</div>
<!-- </div> -->
</div>
</div>
</main>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="assets/js/plugin.js"></script>
</body>
</html>