Merge pull request #13278 from KDSBrowne/BBB-WCAG-08

refactor: WCAG2.1 - Guest Wait Page
This commit is contained in:
Anton Georgiev 2021-09-27 09:34:50 -04:00 committed by GitHub
commit 1d3918411f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>Guest Lobby</title>
<title>BigBlueButton - Guest Lobby</title>
<meta charset="UTF-8">
<style>
:root {
@ -26,6 +26,10 @@
font-family: arial, sans-serif;
}
#content h1 {
font-size: 2rem;
}
.spinner {
margin: 20px auto;
}
@ -149,6 +153,8 @@
url.search = overrideLocale
? `locale=${overrideLocale}`
: `locale=${navigator.language}&init=true`;
document.getElementsByTagName('html')[0].lang = overrideLocale || navigator.language;
const localesPath = 'locales';
@ -320,12 +326,13 @@
<body>
<div id="content">
<h1>Guest Lobby</h1>
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<p>Please wait for a moderator to approve you joining the meeting.</p>
<p aria-live="polite">Please wait for a moderator to approve you joining the meeting.</p>
</div>
</body>