-
Notifications
You must be signed in to change notification settings - Fork 2
/
goals.html
74 lines (74 loc) · 3.26 KB
/
goals.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content = "width=device-width, initial-scale=1.0"> <!-- helps in making website responsive-->
<title>My Goals</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,700;1,100&display=swap" rel="stylesheet"> <!-- google fonts-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <!--google icons-->
</head>
<body>
<!--Header-->
<section class="header">
<nav>
<a href="homepage.html"><img src="images\logo.png" height=130 width=100></a>
<div class="nav-links" id="navLinks">
<span class="material-icons" onclick="hideMenu()">close</span> <!--close button mobile mode-->
<ul>
<li><a href="homepage.html">HOME</a></li>
<li><a href="add.html">ADD TRANSACTIONS</a></li>
<li><a href="view.html">VIEW TRANSACTIONS</a></li>
<li><a href="expense.html">EXPENSE REPORTS</a></li>
<li><b><a href="goals.html">GOALS</a></b></li>
<li><a href="profile.html">PROFILE</a></li>
<li><a href="help.html">HELP</a></li>
</ul>
</div>
<span class="material-icons" onclick="showMenu()">view list</span> <!--menu button mobile mode-->
</nav>
<div class="title">
<h1>My Goals</h1>
</div>
<div class="form">
<div class="row">
<form method="post" action="goals.php">
<!--Budget-->
<div class="column">
<p>Enter budget</p>
<input id="" name="budget" type="text" placeholder="Eg: 100" min="0" required>
<br>
<!--Save New Goal-->
<input type="submit" name="goal" id="" class="hero-btn" value="Save Your Goal">
</div>
<!--Timeline-->
<div class="column">
<p>Choose timeline</p>
<select id="" name="timeline" required>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
<option value="yearly">Yearly</option>
</select>
</div>
</form>
</div>
</div>
</section>
<section class="subtitleheader">
<div class="subtitle">
<h1>Expenses Vs Goals</h1>
</div>
</section>
<!--Javascript for toggling menu in mobile mode-->
<script>
var navLinks= document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = '0px';
}
function hideMenu(){
navLinks.style.right = '-200px';
}
</script>
</body>
</html>