-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtransactions.html
56 lines (52 loc) · 1.64 KB
/
transactions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="styles/styles.css" rel="stylesheet">
<link href="styles/index.css" rel="stylesheet">
<title>nus money</title>
</head>
<body class="container full-height-grow">
<header class="main-header">
<a href="/" class="brand-logo">
<img src="images/nus-money-logo.svg">
<div class="brand-logo-name">nus money</div>
</a>
<nav class="main-nav">
<ul>
<li><a href="feature.html">How it works</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
</ul>
</nav>
</header>
<section class="transactions-section">
<h3>Transaction Details</h3>
<form id="form">
<div class="form-control">
<label for="startdate">Start Date</label>
<input type="date" id="startdate" placeholder="Enter start date..." />
</div>
<div class="form-control">
<label for="enddate">End Date</label>
<input type="date" id="enddate" placeholder="Enter end date..." />
</div>
<button class="btn">Submit</button>
</form>
<table class="table table-striped">
<tr class="bg-info">
<th>Date</th>
<th>Amount</th>
<th>Category</th>
<th>Description</th>
<th>Account</th>
</tr>
<tbody id="myTable">
</tbody>
</table>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="scripts/gettable.js"></script>
</body>
</html>