forked from davidfyffe/PrefillChromeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
32 lines (31 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
button {
height: 30px;
outline: none;
margin: 10px;
color: goldenrod;
background-color: beige;
}
</style>
</head>
<body>
<p>Please enter the daily hours and the final weekly hours</p>
Daily hours: <br>
<textarea id="dailyHours"></textarea> <br>
Weekly hours: <br>
<textarea id="weeklyHours"></textarea> <br>
<div>
<input type="radio" id="officeBelfast" name="office" class="officeCheckBox" value="Belfast" checked />
<label for="officeBelfast">Belfast</label>
</div>
<div>
<input type="radio" id="officeDublin" name="office" class="officeCheckBox" value="Dublin" />
<label for="officeDublin">Dublin</label>
</div>
<button type="button" id="saveButton">Save</button>
</body>
<script src="options.js"></script>
</html>