-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
59 lines (55 loc) · 1.41 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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HREXT08 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" type="text/css" href="css/style.css">
</head>
<body>
<div class="container">
<form action="" method="" class="form">
<div class="form">
<label for="key">Enter key: </label>
<input type="text" name="key" id="key" required>
</div>
<div class="form">
<label for="value">Enter value: </label>
<input type="text" name="value" id="value" required>
</div>
<div class="form">
<button class="button" id="btn-create" type="button">Create</button>
<button class="button" id="btn-update" type="button">Update</button>
<button class="button" id="btn-delete" type="button">Delete</button>
</div>
<!-- clear button? -->
</form>
<table>
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>test key</td>
<td>test value</td>
</tr>
</tbody>
</table>
</div>
<div id="statusLabel">Status:</div>
<script src="app/app.js"></script>
<!--
table to view data
form for input for the crud operations
corgi gif
cowbell sound
-->
</body>
</html>