-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
34 lines (34 loc) · 1.19 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>Mock NodeJS service</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta content="width=device-width, initial-scale=1, user-scalable=no" name="viewport">
</head>
<body>
<div id="app">
<p> Validate streaming credentials </p>
<form method="post" action="/validateCredentials">
<input id="type" name="type" placeholder="type" autocomplete="off" />
<br>
<input id="username" name="username" placeholder="username" autocomplete="off" />
<br>
<input id="password" name="password" placeholder="password" autocomplete="off" />
<br>
<input id="streamID" name="streamID" placeholder="streamID" autocomplete="off" />
<br>
<button>Send</button>
</form>
<p> Invalidate streaming credentials</p>
<form method="post" action="/invalidateCredentials">
<input id="username" name="username" placeholder="username" autocomplete="off" />
<br>
<input id="password" name="password" placeholder="password" autocomplete="off" />
<br>
<input id="streamID" name="streamID" placeholder="streamID" autocomplete="off" />
<br>
<button>Send</button>
</form>
</div>
</body>
</html>