-
Notifications
You must be signed in to change notification settings - Fork 1
/
aid.html
230 lines (143 loc) · 4.93 KB
/
aid.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Refugee Details</title>
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:500,300,1000' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<style type="text/css">
/* Customize the label (the container) */
.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default checkbox */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
select{
background-color:#D3D3D3;
margin-left: 300px;
}
#fileToUpload{
padding-top:15px;
height: 120px;
width: 150px;
float:right;
}
#left{
float: left;
width: 50%;
}
#right{
float: right;
width: 50%;
}
#r{
float: right;
}
.header1
{
background-color:#1ab188;
padding:10px;
}
.in
{
height: 30px;
display:inline;
width:30px;
}
</style>
</head>
<body>
<div class="form">
<ul class="tab-group">
<div class="tab-content">
<h1 class="header1">AID</h1>
<form action="php/help1.php" method="POST" enctype="multipart/form-data" >
<div class="top-row">
<button type="Resource" name="Resource" class="button button-block"/>Resource</button>
<br/>
<div class="field-wrap check_class">
<input class="in" type="checkbox" name="Food" value="Food"><span style="text-align: center;color:#fff;font-size:30px;"><B>FOOD</B></span>
<br/>
<br/>
<input class="in" type="checkbox" name="Clothes" value="Clothes">
<span style="text-align: center;color:#fff;font-size:30px"><B>CLOTHES</B></span>
<br/>
<br/>
</div>
</form>
<form action="php/help1.php" method="POST" enctype="multipart/form-data" >
<button type="Medical" name="Medical" class="button button-block"/>Medical</button>
<div class="field-wrap">
<br/>
<input class="in" type="checkbox" name="Emergency" ><span style="text-align: center;color:#fff;font-size:30px"><B>Emergency<B></span>
<br/>
<br/>
<input class="in" type="checkbox" name="Chronic"><span style="text-align: center;color:#fff;font-size:30px"><B>Chronic Disease</B></span>
<br/>
<br/>
</div>
</form>
<form action="php/help1.php" method="POST" enctype="multipart/form-data" >
<button type="Migration" name="Migration" class="button button-block"/>Transfer Refugee</button>
</form>
</div>
</div><!-- tab-content -->
</div> <!-- /form -->
</ul>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="javascript/java.js"></script>
</body>
</html>