-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
77 lines (74 loc) · 3 KB
/
calendar.html
File metadata and controls
77 lines (74 loc) · 3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Treasure Keeper - Calendar</title>
<link rel="icon" type="image/png" href="image/icon.png">
<link rel="stylesheet" href="styles/calendarstyles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar">
<div class="dropdown">
<button class="dropbtn">三</button>
<div class="dropdown-content">
<a href="index.html">Home</a>
<a href="statistics.html">Statistics</a>
<a href="calendar.html">Calendar</a>
<a href="aboutus.html">About Us</a>
</div>
</div>
<h2>Treasure Keeper</h2>
</div>
<!--Calendar element, which will mostly be generated by the javascript-->
<div class="calendar">
<div class="calendar-header">
<button class="prev-month">⇦</button>
<h3 class="month-year">March 2023</h3>
<button class="next-month">⇨</button>
</div>
<div class="calendar-body">
<div class="day-names">
<div>S</div>
<div>M</div>
<div>T</div>
<div>W</div>
<div>T</div>
<div>F</div>
<div>S</div>
</div>
<div class="days">
<!--As we can see this class "days" is intially empty-->
</div>
</div>
</div>
<br>
<!-- Transaction list element -->
<div id="transaction-list-container">
<h4>Income</h4>
<hr>
<ul id="income-list" class="list"></ul><br>
<h4>Expenses</h4>
<hr>
<ul id="expense-list" class="list"></ul><br>
<h4>Surplus of the Day</h4>
<div class="currency-control">
<label for="currency-select">Display Currency:</label>
<select id="currency-select" class="currency-select">
<option value="" disabled selected>Select a Currency</option>
<option value="USD">US Dollar ($)</option>
<option value="AUD">Australian Dollar (A$)</option>
<option value="EUR">Euro (€)</option>
<option value="GBP">British Pound (£)</option>
<option value="JPY">Japanese Yen (¥)</option>
<option value="IDR">Indonesian Rupiah (Rp)</option>
</select>
</div>
<ul id="surplus-list" class="list"></ul>
</div>
</div>
<script src="scripts/calendarscript.js"></script>
</body>
</html>