14 lines
495 B
PHP
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');
|
|
?>
|