Files
rooms/static/index.html
2026-02-14 21:11:25 -08:00

21 lines
631 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rooms</title>
</head>
<body>
<div id="signin" style="display: none; align-items: center; justify-content: center; height: 100vh;"></div>
<div id="main" style="display: none;">
<h1>Rooms</h1>
<p>Signed in as <span data-bind="email"></span></p>
</div>
<script type="module">
import { init } from '/app.js';
const profile = await init();
document.getElementById('main').style.display = 'block';
</script>
</body>
</html>