-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
49 lines (39 loc) · 1.72 KB
/
options.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
<!doctype html>
<head>
<title>Time is Money Settings</title>
<link href="css/options.css" media="screen" rel="stylesheet" type="text/css">
<link href="css/form.css" media="screen" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Roboto:100,400,500' rel='stylesheet' type='text/css'>
</head>
<body id="window">
<div id="mainContent">
<div class="minimised">
<img class="headerLogo" src="img/logo.svg" />
<div class="onOffSwitch" id="onOffSwitch"></div>
<div class="advancedOptionsToggle" id="advancedOptionsToggle"></div>
</div>
<div class="advancedOptions" id="advancedOptions">
<div class="formItem">
<label class="formItem-label" for="monthlyWage">Monthly take-home pay</label>
<div class="monthlyWageInputContainer">
<input class="formItem-input" type="text" id="monthlyWage" autocomplete="off"/>
</div>
</div>
<div class="formItem formItem--small formItem--float">
<input class="formItem-input" type="text" id="hours" autocomplete="off"/>
<label class="formItem-label formItem-label--float" for="hours">Hours a day</label>
</div>
<div class="formItem formItem--small formItem--float">
<input class="formItem-input" type="text" id="days" autocomplete="off"/>
<label class="formItem-label" for="hours">Days a week</label>
</div>
<div class="formItem formItem--small formItem--float">
<input class="formItem-input" type="checkbox" id="replace" autocomplete="off"/>
<label class="formItem-label" for="replace">Replace money</label>
</div>
</div>
</div>
<script src="options.js"></script>
<script src="ga.js"></script>
</body>
</html>