-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
30 lines (29 loc) · 905 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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Roku Button Options</title>
<style>
body {
line-height: 1.5;
}
#status {
outline: orange solid .15em;
border-radius: .25em;
padding: .1em;
}
</style>
</head>
<body>
<span id="status"></span>
<br />
<form class="browser-style">
<label>Your Roku's IP address: <input autofocus required pattern="^(?!0)(?!.*\.$)((1?\d?\d|25[0-5]|2[0-4]\d)(\.|$)){4}$" type="text" id="roku_ip" /></label>
<br />
<label>Context menu button: <input type="checkbox" id="context_menus" /></label>
<br />
<label>Bookmark menu button: <input type="checkbox" id="bookmark_menus" /></label>
<br />
<button class="browser-style" type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>