-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexDb.html
41 lines (37 loc) · 1.2 KB
/
indexDb.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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title></title>
<style>
#res {
padding: 20px;
background-color: black;
color: white;
}
</style>
<script src='./indexDb.js'></script>
</head>
<body>
<div id="main">
<div class="jumbotron">
<h1 class="text-primary">Upload Addresses</h1>
<p>development</p>
</div>
<p id="label">Sort By</p>
<input class="form-control" id="sort" type="text" name="value" value="locality">
<br>
<p id="label">Value</p>
<input class="form-control" id="getValue" type="text" name="value" value="">
<br>
<button type="button" class="btn btn-primary" onclick="debugtest()">Start</button>
<br />
<hr />
<div class="row">
<div class="col" id="res"></div>
</div>
</div>
</body>
</html>