-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.09 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>
<html lang="en">
<head>
<title>Bill Pay</title>
<link rel="shortcut icon" type="image/x-icon" href="data:image/x-icon;,">
<link rel="stylesheet" href="./dist/styles.css" />
<script type="module" src="./dist/bundle.js"></script>
</head>
<body>
<div id="pin-container">
<dialog id="popupDialog">
<p id="popup_text">Yup!</p>
<p>Press any key to continue.</p>
</dialog>
<dialog id="myDialog">
<label for="pin">Enter PIN</label>
<input id="pin" type="password" />
</dialog>
</div>
<div id="container">
<table id="table">
<thead id="table-head"></thead>
<tbody id="table-body"></tbody>
<tfoot id="table-foot"></tfoot>
</table>
</div>
<footer class="footer">
<button id='deletebtn' class='rowbtn' hidden>Delete</button>
<button id='addbtn' class='rowbtn'>Add New</button>
<input id="filesave" class="file" type="file" name="filesave">
<input id="fileload" class="file" type="file" name="fileload">
</footer>
</layout-container>
</body>
</html>