-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.html
88 lines (87 loc) · 3.7 KB
/
setup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
Settings
</title>
<script src="js/userData.js"></script>
<script src="js/settings.js"></script>
<link rel="stylesheet" type="text/css" href="css/settings.css">
</head>
<body onload="checkChange(); startCheck();">
<div class="userInputs">
<h1>Settings</h1>
<div class="overflow">
<label class="payTitle">Pay Type:</label>
<select id="select">
<option value="hour">Hourly</option>
<option value="day">Daily</option>
<option value="month">Monthly</option>
<option value="year">Yearly</option>
</select>
<div class="spacer">
<form id="hour">
<label>Enter hourly pay: </label>
<br>
<input class="textField" type="text" id="hourly" placeholder="$ per hour">
<br>
<div class="submitBtn" onclick="setValues(0)">
Update
</div>
</form>
<form id="day">
<label>Enter daily pay: </label>
<br>
<input class="textField" type="text" id="daily" placeholder="$ earned daily">
<br>
<label>Hours Worked Daily</label>
<br>
<input class="textField" type="text" id="hourDay" placeholder="(optional)">
<br>
<div class="submitBtn" onclick="setValues(1)">
Update
</div>
</form>
<form id="month">
<label>Enter monthly pay: </label>
<br>
<input class="textField" type="text" id="monthly" placeholder="$ per month">
<br>
<label>Days Worked per Week</label>
<br>
<input class="textField" type="text" id="mDays" placeholder="(optional)">
<br>
<label>Hours Worked Daily</label>
<br>
<input class="textField" type="text" id="mHours" placeholder="(optional)">
<br>
<div class="submitBtn" onclick="setValues(2)">
Update
</div>
</form>
<form id="year">
<label>Enter yearly pay: </label>
<br>
<input class="textField" type="text" id="yearly" placeholder="$ per year">
<br>
<label>Days Worked per Week</label>
<br>
<input class="textField" type="text" id="yDays" placeholder="(optional)">
<br>
<label>Hours Worked Daily</label>
<br>
<input class="textField" type="text" id="yHours" placeholder="(optional)">
<br>
<div class="submitBtn" onclick="setValues(3)">
Update
</div>
</form>
<div class="backBtn" onclick="return redirect()">
Home
</div>
</div>
</div>
</div>
</body>
</html>