-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
52 lines (52 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HREXT10 R00lz!</title>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"></script>
<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">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body class="m-3">
<div class="container">
<div class="row mb-3">
<div class="input-group col-sm-5">
<div class="input-group-prepend">
<label class="input-group-text">Key</label>
</div>
<input class="key form-control" type="text">
</div>
<div class="input-group col-sm-5">
<div class="input-group-prepend">
<label class="input-group-text">Value</label>
</div>
<input class="value form-control" type="text">
</div>
<button class="reset btn btn-danger btn-sm col-sm-2">Reset Input</button>
</div>
<div class="row mb-3 justify-content-center">
<button class="create btn btn-success btn-sm mr-2 col-sm-2">Create</button>
<button class="update btn btn-primary btn-sm mr-2 col-sm-2">Update</button>
<button class="delete btn btn-warning btn-sm mr-2 col-sm-2">Delete</button>
<button class="clear btn btn-danger btn-sm mr-2 col-sm-3">Clear Database</button>
</div>
<div class="row">
<table class="table table-striped table-hover table-dark">
<thead>
<tr>
<th scope="col">Key</th>
<th scope="col">Value</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script src="app/app.js"></script>
</body>
</html>