-
Notifications
You must be signed in to change notification settings - Fork 1
/
showRequests.html
38 lines (38 loc) · 1.12 KB
/
showRequests.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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="getinfo.js"></script>
</head>
<body>
<section id="data">
<table>
<thead>
<tr>
<th>Requester ID</th>
<th>Request Name</th>
<th>Fulfill</th>
</tr>
</thead>
<tbody>
<tr>
<td>9872341</td>
<td>Food</td>
<td>Fulfill</td>
</tr>
<tr>
<td>123987</td>
<td>Clothes</td>
<td>Fulfill</td>
</tr>
<tr>
<td>12387</td>
<td>Water</td>
<td>Fulfill</td>
</tr>
</tbody>
</table>
</section>
</body>
</html>