This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
42 lines (42 loc) · 1.68 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>USCIS Fetcher</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/jquery-2.2.3.min.js" type="text/javascript"></script>
<script src="js/utils.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</head>
<body>
<div class="container-fluid">
<form class="form-query">
<div class="form-group col-md-6">
<label class="sr-only" for="receipt-num">Receipt Number</label>
<input type="text" class="form-control input-receipt-num" placeholder="Receipt Number">
</div>
<div class="form-group col-md-4">
<label class="sr-only" for="count">Count</label>
<input type="text" class="form-control input-count full-width" placeholder="Count">
</div>
<div class="form-group col-md-2">
<button type="submit" class="btn btn-primary btn-query full-width">Query</button>
</div>
<table hidden>
<tbody id="table-row-template">
<tr>
<td class="table-col-receipt-num">Loading...</td>
<td class="table-col-result">Loading...</td>
</tr>
</tbody>
</table>
<div class="form-group col-md-12">
<table class="table table-striped table-query-result col-md-12" template-id="table-row-template">
<tbody>
</tbody>
</table>
</div>
</form>
</div>
</body>