Noah Petherbridge
cbfbcd768f
* In place of the Help and Settings buttons, add a hamburger menu dropdown and place the links under there. * Also in the dropdown is Close All Cameras and Mute All Cameras (if you have any cams open; the links are hidden if not) * Also in the dropdown add a Logout button that just links to a new /logout route in order to unload the page and align with some users' expectations (not knowing closing out of the chat page was enough to log out of the room before) * Bring back "(offline)" indicators when a user is no longer in the room.
31 lines
726 B
HTML
31 lines
726 B
HTML
{{define "index"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/bulma.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/bulma-prefers-dark.css">
|
|
<title>Logged Out</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container is-fullhd">
|
|
<div class="content my-5">
|
|
<h1>Logged Out</h1>
|
|
|
|
<p>
|
|
You are now logged out of the chat room. You may now close this page.
|
|
</p>
|
|
</div>
|
|
|
|
<script>
|
|
setTimeout(() => {
|
|
window.close();
|
|
}, 5000);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
{{end}}
|