-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock.html
53 lines (47 loc) · 1.06 KB
/
mock.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
<!DOCTYPE html>
<html>
<head>
<title>pecunia</title>
</head>
<body>
<h1>pecunia</h1>
<h2>Status</h2>
<ul>
<li>Period: 2018-11-16..2018-11-29</li>
<li>Budget: $1200.00</li>
<li>Spent: $999.00</li>
<li>Remaining: $201.00</li>
</ul>
<h2>Record Transaction</h2>
<form>
<label for="date">Date</label><br/>
<input type="text" id="date"><br/>
<label for="amount">Amount</label><br/>
<input type="text" id="amount"><br/>
<label for="description">Description</label><br/>
<input type="text" id="description"></br>
<input type="submit" value="Record"/>
</form>
<h2>Finalize Period</h2>
<form>
<input type="submit" value="Finalize"/>
</form>
<h2>Transaction History</h2>
<table>
<tr>
<th>Date</th>
<th>Amount</th>
<th>Description</th>
</tr>
<tr>
<td>2018-11-20</td>
<td>11.87</td>
<td>Senor Taco</td>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>
</body>
</html>