my-32bit-cafe/pages/logged_out.php

14 lines
425 B
PHP

<?php
$curPage = "login";
require_once('includes/header.php');
?>
<div class="main_frame">
<div class='page_title'><h1>my 32-bit cafe dashboard</h1></div>
<h1>You are not signed in.</h1>
<p>Please click the button below to sign in or create an account with our 32-Bit Cafe SSO system.</p>
<p><button>Login</button></p>
</div>
<?php
require_once('includes/footer.php');
?>