-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoptions.html
55 lines (48 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Options - Teams Phone Fix</title>
<style>
html, body {
font-family: Helvetica, Arial, sans-serif;
padding: 5px;
}
label {
font-size: 100%;
font-style: italic;
font-family: Helvetica, Arial, sans-serif;
vertical-align: top;
}
textarea, select {
border: 1px solid #ccc;
width: 400px;
}
textarea {
height: 100px;
resize: none;
}
div {
text-align: right;
margin-bottom: 15px;
}
</style>
</head>
<body>
<form>
<p>
If Microsoft Teams does not work, try to change your user agent here.<br />
If none of the standard user agents work anymore, you may provide a custom user agent.
</p>
<div>
<label for="available_useragents">Standard User Agents:</label>
<select id="available_useragents"></select>
</div>
<div>
<label for="useragent">User Agent:</label>
<textarea id="useragent" required="required"></textarea>
</div>
</form>
<script src="options.js"></script>
</body>
</html>