forked from red5pro/streaming-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.22 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
<!doctype html>
<html>
<head>
{{> meta title='Publish Auth Test'}}
{{> header-scripts}}
{{> header-stylesheets}}
<style>
.hidden {
display: none;
}
#login-form {
padding: 10px 0;
background-color: #afafaf;
}
#login-form p {
margin: 10px 0;
}
#login-form p label {
margin-right: 6px;
width: 100%;
text-align: right;
}
</style>
</head>
<body>
<div id="app">
{{> version }}
{{> settings-link}}
{{> test-info testTitle='Publish Auth Test'}}
{{> status-field-publisher}}
{{> statistics-field}}
<div id="login-form" class="centered">
<p>Log In to begin your Broadcast:</p>
<p><label for="username-field">username:</label><input id="username-field" name="username-field"></p>
<p><label for="password-field">password:</label><input id="password-field" name="password-field"></p>
<button id="submit-button">submit</button>
</div>
<div class="centered">
<video id="red5pro-publisher-video" controls class="video-element" muted></video>
</div>
</div>
{{> body-scripts}}
<script src="index.js"></script>
</body>
</html>