-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathindex.html
46 lines (46 loc) · 1.35 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
<!doctype html>
{{> license}}
<html>
<head>
{{> meta title='Publish Remote Call'}}
{{> header-scripts}}
{{> header-stylesheets}}
<style>
.settings-area {
padding: 5px;
background-color: #eeee;
text-align: center;
padding-bottom: 20px;
}
.settings-field, .settings-field > input {
font-size: 1em;
}
</style>
</head>
<body>
{{> top-bar }}
<div id="app">
{{> settings-link}}
{{> test-info testTitle='Publish Remote Call'}}
<div class="stream-section">
{{> status-field-publisher}}
{{> statistics-field packets_field='Packets Sent'}}
<div id="video-container" class="centered">
<video id="red5pro-publisher" class="red5pro-publisher"
controls autoplay playsinline muted>
</video>
</div>
<div class="settings-area">
<p class="settings-field settings-collapsable">
<label class="settings-label" for="message-input">Message:</label>
<input id="message-input" name="message-input" type="text"></input>
</p>
<p><button class="ui-button" id="send-button">Click to send a Message to all Subscribers.</button></p>
</div>
</div>
</div>
{{> footer}}
{{> body-scripts}}
<script src="index.js"></script>
</body>
</html>