1
0
Fork 0
app.sixfold.org/www/account/index.php
2024-11-14 04:30:20 -05:00

23 lines
601 B
PHP

<?php
$description = "View and update your account information.";
$title = "Your Account";
include "partials/head.php";
?>
<body>
<?php include "partials/header.php"; ?>
<main id="main" class="flow">
<header>
<h1><?= $title ?></h1>
</header>
<?php if (!LOGGED_IN): ?>
<p>You must log in to view this page.</p>
<?php include "partials/login-form.php";else: ?>
<ul>
<li><a href='/account/edit'>Edit profile</a></li>
<li><a href='/account/logout'>Log out</a></li>
</ul>
<?php endif; ?>
</main>
<?php include "partials/footer.php"; ?>