-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebaudio-example.html
54 lines (53 loc) · 1.85 KB
/
webaudio-example.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>WebRTC Reference Client</title>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="webaudio.css">
<script type="module" src="dist/webaudio-example-bundle.js"></script>
</head>
<body>
<main>
<h1>
VIER Cognitive Voice Gateway<br>
WebRTC Reference Client
</h1>
<section>
<div class="form-field">
<div>
<label for="environment">Environment</label>
</div>
<div>
<input id="environment" type="text" readonly disabled>
</div>
</div>
<div class="form-field">
<div>
<label for="reseller-token">Reseller Token</label>
</div>
<div>
<input id="reseller-token" name="reseller-token" type="text">
</div>
</div>
<div class="form-field">
<div>
<label for="destination">Destination</label>
</div>
<div>
<input id="destination" name="destination" type="tel">
</div>
</div>
<div id="audio-drop-zone">
<span>Drop Audio Here!</span>
</div>
<div id="files">
</div>
<div>
<button id="start-calls">Start calls!</button>
</div>
</section>
</main>
</body>
</html>