1
Fork 0
galene/static/sfu.html

75 lines
2.2 KiB
HTML
Raw Normal View History

2020-04-24 19:38:21 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>SFU</title>
<link rel="stylesheet" type="text/css" href="/common.css"/>
<link rel="stylesheet" type="text/css" href="/sfu.css"/>
<link rel="author" href="https://www.irif.fr/~jch/"/>
</head>
<body>
<h1 id="title">SFU</h1>
<div id="header">
<div id="statdiv">
<span id="statspan"></span>
2020-04-25 18:09:31 +02:00
<span id="userspan"></span>
2020-04-24 19:38:21 +02:00
<form id="userform" class="userform">
<label for="username">Username:</label>
<input id="username" type="text" name="username"
autocomplete="username"/>
<label for="password">Password:</label>
<input id="password" type="password" name="password"
autocomplete="current-password"/>
<input id="connectbutton" type="submit" value="Connect" disabled/>
</form>
<input id="disconnectbutton" class="disconnect-invisible"
type="submit" value="Disconnect"/>
<span id="errspan"></span>
</div>
<div id="optionsdiv">
<label for="presenterbox">Present:</label>
2020-04-25 02:25:51 +02:00
<input id="presenterbox" type="checkbox"/ disabled>
<label for="videoselect">Camera:</label>
<select id="videoselect">
<option>default</option>
<option>off</option>
</select>
<label for="audioselect">Microphone:</label>
<select id="audioselect">
<option>default</option>
<option>off</option>
</select>
2020-04-24 19:38:21 +02:00
<label for="sharebox">Share screen:</label>
2020-04-25 02:25:51 +02:00
<input id="sharebox" type="checkbox"/ disabled>
2020-05-09 19:39:34 +02:00
<label for="requestbox">Receive video:</label>
<input id="requestbox" type="checkbox" checked>
2020-04-24 19:38:21 +02:00
</div>
</div>
<div id="main">
<div id="users"></div>
<div id="chat">
<div id="chatbox">
<div id="box"></div>
<form id="inputform">
<textarea id="input"></textarea>
<input id="inputbutton" type="submit" value="&#10148;"/>
</form>
</div>
<div id="resizer">
</div>
</div>
<div id="peers"></div>
</div>
<script src="/sfu.js" defer></script>
</body>
</html>