-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
96 lines (83 loc) · 2.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<script src="js/options.js"></script>
<style>
body {
font-family: Arial, sans-serif;
}
tr td {
padding: 5px 3px;
}
input {
padding: 5px;
}
button {
border: 0;
padding: 5px 10px;
}
button#permissions {
background-color: #ff6666;
}
p a {
color: black;
text-decoration: none;
}
p a:hover {
text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #23222b;
color: white;
}
input {
background-color: #484854;
color: white;
border: 1px solid gray;
}
button {
background-color: #484854;
color: white;
border: 0;
}
button#permissions {
background-color: #660000;
}
p a {
color: white;
}
}
</style>
</head>
<body style="margin: 10px;">
<h1>CSTA over HTTP settings</h1>
<table>
<tbody>
<tr>
<td><label for="url">telephone CSTA URL:</label></td>
<td><input type="text" id="url" placeholder="http://192.168.1.55/csta" style="width: 300px" /></td>
</tr>
<tr>
<td><label for="user">telephone username:</label></td>
<td><input type="text" id="user" placeholder="" style="width: 300px" /></td>
</tr>
<tr>
<td><label for="password">telephone password:</label></td>
<td><input type="password" id="password" placeholder="" style="width: 300px" /></td>
</tr>
<tr>
<td><label for="callingDevice">calling device:</label></td>
<td><input type="text" id="callingDevice" style="width: 300px" /></td>
</tr>
<tr>
<td colspan="2"><label>do not prompt before calling: <input type="checkbox" id="doNotPrompt" placeholder="" style="margin: 0 5px;" /></label></td>
</tr>
</tbody>
</table>
<button id="savebtn" style="margin-top:10px;">save</button>
<button id="permissions" style="margin-top:10px;display:none;">save & grant permissions</button>
<p style="font-size: 0.8em">© 2023 <a href="https://www.netas.ch" target="_blank">Netas AG</a></p>
</body>
</html>