-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (61 loc) · 3.2 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
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>lib-jitsi-meet JaaS sample</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="example.js"></script>
</head>
<body>
<form class="form-horizontal" id="form">
<fieldset class="m-4">
<div class="form-group col-4 my-2 mx-auto">
<label class="col-12 control-label" for="transcriptInput">Transcript language</label>
<select class="form-select" id="transcriptInput"></select>
</div>
<div class="form-group col-4 my-2 mx-auto">
<label class="col-12 control-label" for="regionInput">Region</label>
<select class="form-select" id="regionInput"></select>
</div>
<div class="form-group col-4 my-2 mx-auto">
<label class="col-4 control-label" for="tenantInput"><b>Tenant*</b></label>
<input id="tenantInput" name="tenantInput" type="text" placeholder="vpaas-magic-cookie-..." class="form-control input-md" required>
<div class="invalid-feedback">
Please provide a valid tenant.
</div>
</div>
<div class="form-group col-4 my-2 mx-auto">
<label class="col-6 control-label" for="roomInput"><b>Room*</b></label>
<input id="roomInput" name="roomInput" type="text" placeholder="" class="form-control input-md" required>
<div class="invalid-feedback">
Please provide a room name.
</div>
</div>
<div class="form-group col-4 my-2 mx-auto">
<label class="col-4 control-label" for="tokenInput">JWT</label>
<input id="tokenInput" name="tokenInput" type="text" placeholder="" class="form-control input-md">
</div>
<div class="form-group col-4 my-2 mx-auto">
<label class="col-6 control-label" for="releaseInput">Release version</label>
<div class="col-6 input-group">
<input id="releaseInput" name="releaseInput" type="text" placeholder=""
class="form-control input-md">
</div>
</div>
<div class="form-check form-switch col-4 mt-2 mb-4 mx-auto">
<label class="form-check-label" for="useStageInput">stage.8x8.vc</label>
<input class="form-check-input" type="checkbox" id="useStageInput">
</div>
<div id="buttons" class="form-group col-4 my-3 mx-auto">
<div class="col-12 text-center">
<button id="goButton" type="button" class="btn btn-primary">Go</button>
<button id="hangupButton" type="button" class="btn btn-secondary">Hang up</button>
</div>
</div>
</fieldset>
</form>
<script id="ljmScript" src="https://8x8.vc/libs/lib-jitsi-meet.min.js"></script>
</body>
</html>