23 lines
		
	
	
	
		
			601 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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"; ?>
 |