2020-06-29 07:45:58 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/html">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!--#include virtual="/base.html" -->
|
2020-08-11 14:20:19 +00:00
|
|
|
<link rel="stylesheet" href="css/all.css">
|
2020-06-29 07:45:58 +00:00
|
|
|
<script>
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
if (!JitsiMeetJS.app) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = new URL(window.location.href);
|
|
|
|
const params = new URLSearchParams(url.search);
|
|
|
|
const showAvatar = params.get('showAvatar') === 'true';
|
|
|
|
const showJoinActions = params.get('showJoinActions') === 'true';
|
2020-07-23 10:04:01 +00:00
|
|
|
const showSkipPrejoin = params.get('showSkipPrejoin') === 'true';
|
2020-06-29 07:45:58 +00:00
|
|
|
const css = params.get('style');
|
|
|
|
const style = document.createElement('style');
|
|
|
|
style.appendChild(document.createTextNode(css));
|
|
|
|
document.head.appendChild(style);
|
|
|
|
|
|
|
|
JitsiMeetJS.app.renderEntryPoint({
|
|
|
|
Component: JitsiMeetJS.app.entryPoints.PREJOIN,
|
|
|
|
props: {
|
|
|
|
showAvatar,
|
2020-07-23 10:04:01 +00:00
|
|
|
showJoinActions,
|
|
|
|
showSkipPrejoin
|
2020-06-29 07:45:58 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<!--#include virtual="/title.html" -->
|
2020-07-23 10:04:01 +00:00
|
|
|
<script><!--#include virtual="/config.js" --></script>
|
|
|
|
<script><!--#include virtual="/interface_config.js" --></script>
|
2020-08-13 14:40:35 +00:00
|
|
|
<script src="libs/lib-jitsi-meet.min.js"></script>
|
|
|
|
<script src="libs/app.bundle.min.js"></script>
|
2020-06-29 07:45:58 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="react"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|