-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Communication Client - Emergency Calling Sample</title>
</head>
<body>
<h4>Azure Communication Services</h4>
<h1>Emergency Calling Quickstart</h1>
<input id="token-input" type="text" placeholder="User access token"
style="margin-bottom:1em; width: 200px; display: block;" />
<input id="country-code-input" type="text" placeholder="Country Code. E.g: GB"
style="margin-bottom:1em; width: 200px; display: block;" />
<button id="token-submit" type="button">
Submit
</button>
<input id="alt-caller-id-input" type="text" placeholder="Alternate Caller ID (from Resource) in E.164 format"
style="margin-bottom:1em; width: 300px; display: block;" />
<input id="callee-id-input" type="text" placeholder="Emergency #, prefixed with 4:? E.g: 4:911, 4:999"
style="margin-bottom:1em; width: 300px; display: block;" />
<div>
<button id="call-button" type="button" disabled="true">
Start Call
</button>
<button id="hang-up-button" type="button" disabled="true">
Hang Up
</button>
</div>
<script src="./app.js" type="module"></script>
</body>
</html>