a1e6b019d2
We think users will be expecting to follow a series of icons into their conference, so we'll remind them here of what is going on with a giant icon. This does not change depending on the call type because the jitsi widget doesn't understand the call type anyways - it's always a video conference.
24 lines
737 B
HTML
24 lines
737 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Jitsi Widget</title>
|
|
</head>
|
|
<body>
|
|
<div id="jitsiContainer"><!-- the js will put the conference here --></div>
|
|
<div id="joinButtonContainer">
|
|
<div class="joinConferenceFloating">
|
|
<div class="joinConferencePrompt">
|
|
<span class="icon"><!-- managed by CSS --></span>
|
|
<h2>Jitsi Video Conference</h2>
|
|
<div id="widgetActionContainer">
|
|
<button type="button" id="joinButton">Join Conference</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- This script is not webpacked, and the script is downloaded at build time -->
|
|
<script src="./jitsi_external_api.min.js"></script>
|
|
</body>
|
|
</html>
|