80 lines
3.7 KiB
HTML
80 lines
3.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<!-- TRACK CODE -->
|
|
<!-- END TRACK CODE -->
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/static/images/favicons/apple-icon-57x57.png">
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/static/images/favicons/apple-icon-60x60.png">
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/static/images/favicons/apple-icon-72x72.png">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/static/images/favicons/apple-icon-76x76.png">
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/static/images/favicons/apple-icon-114x114.png">
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/static/images/favicons/apple-icon-120x120.png">
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/static/images/favicons/apple-icon-144x144.png">
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/static/images/favicons/apple-icon-152x152.png">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/images/favicons/apple-icon-180x180.png">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/static/images/favicons/android-icon-192x192.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/images/favicons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/static/images/favicons/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/images/favicons/favicon-16x16.png">
|
|
<meta name="msapplication-TileColor" content="#000000">
|
|
<meta name="msapplication-TileImage" content="/static/images/favicons/ms-icon-144x144.png">
|
|
<meta name="theme-color" content="#000000">
|
|
|
|
<title>WorkAdventure PWA</title>
|
|
|
|
<style>
|
|
body{
|
|
font-family: Whitney, Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
}
|
|
body img{
|
|
position: absolute;
|
|
top: calc( 50% - 25px);
|
|
height: 59px;
|
|
width: 307px;
|
|
left: calc( 50% - 150px);
|
|
}
|
|
body p{
|
|
position: absolute;
|
|
text-align: center;
|
|
top: calc( 50% + 50px);
|
|
left: calc( 50% - 150px);
|
|
height: 59px;
|
|
width: 307px;
|
|
font-size: 20px;
|
|
}
|
|
body p:nth-child(2){
|
|
top: calc( 50% + 50px);
|
|
left: calc( 50% - 150px);
|
|
}
|
|
body p:nth-child(3){
|
|
top: calc( 50% + 100px);
|
|
left: 0;
|
|
font-size: 10px;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="/static/images/logo.png" alt="WorkAdventure logo"/>
|
|
<p>Charging your workspace ...</p>
|
|
<p id="roomId"></p>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
//TODO when the user will be connected, get all rooms of the user and he could be select room access
|
|
|
|
let paragraph = document.getElementById('roomId');
|
|
paragraph.innerText = localStorage.getItem('lastRoomUrl');
|
|
//the event occurred
|
|
setTimeout(() => {
|
|
window.location = localStorage.getItem('lastRoomUrl');
|
|
}, 3000);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |