-
Notifications
You must be signed in to change notification settings - Fork 5
/
options.html
45 lines (39 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="options.css"/>
</head>
<body>
<form>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Server</label></div>
<div class="browser-style"><input type="text" id="server"><label for=""></label></div>
</div>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Port</label></div>
<div class="browser-style"><input type="text" id="port"><label for=""></label></div>
</div>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Username</label></div>
<div class="browser-style"><input type="text" id="username"><label for=""></label></div>
</div>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Password</label></div>
<div class="browser-style"><input type="password" id="password"><label for=""></label></div>
</div>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Context</label></div>
<div class="browser-style"><input type="text" id="context"><label for=""></label></div>
</div>
<div class="panel-formElements-item browser-style">
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Protocol</label></div>
<div class="browser-style"><input type="text" id="protocol"><label for=""></label></div>
<div class="label"><label class="browser-style-label" for="" data-l10n-id="">Channel</label></div>
<div class="browser-style"><input type="text" id="channel"><label for=""></label></div>
</div>
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>