-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
45 lines (41 loc) · 1.16 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
<!--
Copyright (c) 2012 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
Brian Kennish <[email protected]>
An option page for configuring notifications.
-->
<!doctype html>
<html>
<head>
<title>NetSapiens Screen Pop</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="options.js"></script>
</head>
<body>
<h1>
<img src="phone-volume.png" alt="Toast">
NetSapiens Extension
</h1>
<h2>Options</h2>
<form id="options">
Enable: <input type="checkbox" name="isActivated" id="isActivated" checked>
<br>
Server:
<input type="text" id="server"><br>
Username:
<input type="text" id="username"><br>
Password:
<input type="password" id="password"><br>
Zendesk Hostname:
<input type="text" id="zdserver"><br>
Zendesk Username:
<input type="text" id="zdusername"><br>
Zendesk Password:
<input type="password" id="zdpassword">
</form>
<br>
<div id="status"></div>
<button id="save">Save</button>
</body>
</html>