2025-08-01 14:45:16 +01:00

14 lines
495 B
PHP

<?php
$curPage = "login";
require r('templates/layout/header.php');
?>
<div class="main_frame">
<div class='page_title'><h1>my 32-bit cafe dashboard</h1></div>
<h1>You are not logged in.</h1>
<p>Please click the button below to sign in or create an account with our 32-Bit Cafe SSO system.</p>
<p><a href="<?=INSTALL_URL?>login"><button style="cursor: pointer">Login</button></a></p>
</div>
<?php
require r('templates/layout/footer.php');
?>