-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
34 lines (34 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form name="options">
<div>
<label for="cohort_id_range">Cohort ID range (comma-separated ranges): </label>
<input type="input" name="cohort_id_range" id="cohort_id_range" required pattern="\d+(-\d+)?(,\d+(-\d+)?)*">
</div>
<div>
<label for="cohort_id_update_interval">Cohort ID update interval</label>
<input type="number" name="cohort_id_update_interval" id="cohort_id_update_interval" required>
<span id="cohort_id_update_interval_type">
<input type="radio" name="cohort_id_update_interval_type" value="requests" id="cohort_id_update_interval_type_requests">
<label for="cohort_id_update_interval_type_requests">Requests</label>
<input type="radio" name="cohort_id_update_interval_type" value="seconds" id="cohort_id_update_interval_type_seconds">
<label for="cohort_id_update_interval_type_seconds">Seconds</label>
<span>
</div>
<div>
<label for="cohort_version">Cohort version: </label>
<input type="input" name="cohort_version" id="cohort_version"><br>
</div>
<input type="submit" id="form_submit">
<input type="reset">
</form>
<script src="browser-polyfill.min.js"></script>
<script src="settings.js"></script>
<script src="options.js"></script>
</body>
</html>