Merge pull request #13278 from KDSBrowne/BBB-WCAG-08
refactor: WCAG2.1 - Guest Wait Page
This commit is contained in:
commit
1d3918411f
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user