-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
39 lines (38 loc) · 1.31 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>The Real Price</title>
</head>
<body>
<h1>The Real Price</h1>
<p>made by protores</p>
<p id="hourly-wage" ="">Hourly Wage: Unknown</p>
<form>
<label for="salary-type">Salary Type:</label>
<select id="salary-type" name="salary-type">
<option value="monthly">Monthly</option>
<option value="yearly">Yearly</option>
</select>
<br /><br />
<label for="salary">Salary:</label>
<input type="number" id="salary" name="salary" />
<br /><br />
<label for="hours">Hours per Week:</label>
<input type="number" id="hours" name="hours" />
<br /><br />
<label for="currency">Currency:</label>
<input
type="text"
id="currency"
name="currency"
list="currencies"
/>
<datalist id="currencies"> </datalist>
<br /><br />
<input type="submit" value="Calculate" />
</form>
</body>
<button id="replaceButton">replace money with time</button>
<script type="module" src="popup.js"></script>
<script type="module" src="wage_and_time_calculator.js"></script>
</html>