-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions.html
57 lines (56 loc) · 2.54 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="jquery-2.2.0.min.js"></script>
<script src="options.js"></script>
</head>
<body>
<div class="container">
<div id ="extension_error"></div>
<h3>Settings</h3>
<button style="right: -210px;position: relative;top: 64px;" id="register">Register</button>
<form name="cookieform" id="login" method="post">
<div class="form-group">
<div class="row">
<div class="col-xs-3">
<label for="url">Url of communication Server:</label>
<input type="text" name="url" id="url" class="form-control">
</div>
</div>
<div class="row">
<div class="col-xs-2">
<label for="username">Username:</label>
<input type="text" name="username" id="username" class="form-control"/>
<label for="password">Password:</label>
<input type="password" name="password" id="password" class="form-control"/><br>
<button type="button" id="test" name="test">Test Credentials</button><br><br>
<div id="status"></div>
</div>
</div>
</div>
</form>
<h5>Select Extension</h5>
<select id="picktech"></select>
<button type="button" id="reload" name="relaod" />Refresh</button><br><br>
<label for="conload">Enter Url to load Information about incoming and outgoing calls: </label>
<input type="text" class="form-control" id="conload">
<small>Here the phone_number will be replaced by the Caller number</small><br><br>
<label for="phone_pattern">Pattern to search phone number in web pages:</label>
<input type="text" class="form-control" id="phone_pattern"><br>
<input type="checkbox" name="searchphn" id="searchphn"> Search Phone on new web page<br>
<div id="phnstatus"></div>
<input type="checkbox" name="widgtpop" id="widgtpop"> Automatically open the Phone widget when user click on phone number <br>
<div id="widgt"></div>
<br>
<h5>Default communication preference (Double click the number)</h5>
<select id="prefer">
<option value="voice">Voice</option>
<option value="fax">Fax</option>
<option value="sms" disabled>SMS</option>
<option value="whatsapp" disabled>WhatsApp</option>
</select>
</div>
</body>
</html>