forked from nile-roth/Cs386_TeamProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 922 Bytes
/
index.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
<!DOCTYPE html>
<script>
function link() {
wage = document.getElementById("wage").value;
window.location ='main.html?wage=' +wage;
}
</script>
<html>
<head>
<link href="main.css" rel="stylesheet">
<title>Money Monkey</title>
</head>
<body>
<div class="mainTitle">MONEY MONKEY
<img src="bananacoin.png" alt="monkey" width = "150" height = "150" />
</div>
<div class="input">
<h3>Type hourly wage below</h3><br>
<form>
<input type="number" value="15.00" id="wage" step="0.05" min="0" max="1000"><br>
</form>
<div class="unameClass">
<button onclick="link()">START SHIFT</button>
</div>
</div>
<div class="help">
<img src="monkeyLogin.png" alt="monkey"/ width="150" height="150" class="help">
<a href="login.html">
<button>Login Here</button>
</a>
</div>
</body>
</html>