-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
44 lines (38 loc) · 1.83 KB
/
Copy pathsetting.html
File metadata and controls
44 lines (38 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SuperUltra Settings</title>
<link rel="stylesheet" href="stylesAbby.css">
</head>
<body>
<div class="container">
<header>
<nav>
<ul>
<li><a href="home.html"><img src="return-57.png" alt="Back" class="nav-img"></a></li>
<li><a href="#menu"><img src="menu.png" alt="Menu" class="nav-img"></a></li>
</ul>
</nav>
</header>
<main>
<section class="settings-header">
<h2>SETTINGS</h2>
</section>
<section class="settings-options">
<button class="option" id="DebtPayoffPlan">Debt Pay off Plan</button>
<button class="option" id="FinancialGoal">Financial Goals</button>
<button class="option" id="home" onclick="window.location.href='home.html';">Categories to include in transactions(homePgae)</button>
<!-- Add similar onclick attributes for other buttons, changing the URL as needed -->
<button class="option" id="ExportTransactionHistory" onclick="window.location.href='ExportTransactionHistory.html';">Export Transaction History</button>
<button class="option" id="Security" onclick="window.location.href='security.html';">Security</button>
<!-- section for Sam -->
<button class="option" id="SaveAccountDetails">Save Account Details</button>
<button class="option" id="SavedGoal">Saved Goal</button>
</section>
</main>
</div>
<script src="code2.js"></script>
</body>
</html>