forked from BipulChau/RevMo-frontend-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincome.html
99 lines (81 loc) · 3.23 KB
/
income.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en" class="has-background-grey-light">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title> <!-- CHANGE TITLE TO MATCH PAGE NAME-->
<link rel="icon" type="image/png" href="/images/revmo-temp.png">
<script defer src="./header.js"></script>
<script defer src="./income.js"></script> <!-- CHANGE ./index.js TO WHATEVER YOUR PAGE SCRIPT IS-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar has-shadow is-light" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a href="./index.html" class="navbar-item">
<img src="./images/revmo-temp.png" alt="site-logo" style="max-height: 75px" class="py-3">
</a>
<a class="navbar-burger" id="burger">
<span></span>
<span></span>
<span></span>
</a>
</div>
<div class="navbar-menu" id="nav-links">
<div class="navbar-end">
<!-- Navbar Stuff Goes Here in this format: -->
<a href="/registration.html" class="navbar-item" id="create-account">Create Account</a>
<a href="/user-page.html" class="navbar-item" id="my-account">User Page</a>
</div>
<div class="navbar-item">
<div class="buttons">
<a class="button is-info" href="/login.html" id="login-btn">
<strong>Log in</strong>
</a>
<a class="button is-info" id="logout-btn">
Log out
</a>
</div>
</div>
</div>
</nav>
<!-- Main Body-->
<!-- Bulma uses columns out of 12. See https://bulma.io/documentation/columns/sizes/
adding 'is-half' or 'is-6' to the class does the same thing
so class="column is-half" could take up half the screen
very useful for centering things on the screen (empty column on each side with active column in the middle)
When you make a box, to separate it from the header, add 'my-4' to the class list-->
<div class="columns box m-3">
<div class="column is-2"></div>
<div class="column is-8" id="tables-column">
<h1 class="is-size-3">Accounts with incoming transactions</h1>
<p>
<span>
<label class="label">Months to Display:</label>
</span>
<span>
<input class="input" style="width: 10%" type="text" placeholder="3" id="months-to-display">
</span>
<span>
<button class="button is-primary is-light" id="refresh">Refresh</button>
</span>
</p>
<!-- Template for table-->
<!-- <table class="table has-text-centered is-fullwidth" id="income-table">
<thead>
<tr class="has-text-centered">
<th>Year</th>
<th>Month</th>
<th>Total Income</th>
</tr>
</thead>
<tbody>
</tbody>
</table> -->
</div>
<div class="column is-2"></div>
</div>
</body>
</html>