-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Generate Table from Server</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="getdata.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- My sample pages -->
</head>
<body>
<button id="btn" type="button" class="btn btn-info btn-lg">Get Transactions</button>
<style>
th{
color:#fff;
}
</style>
<table class="table table-bordered">
<tr class="bg-success">
<th>Transaction ID</th>
<th>Time stamp</th>
<th>Category</th>
<th>Account</th>
<th>Amount</th>
</tr>
<tbody id="myTable">
</tbody>
</table>
</body>