2021-11-12 15:23:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* home.php
|
|
|
|
*
|
|
|
|
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
|
|
|
*/
|
|
|
|
|
|
|
|
use wishthis\Page;
|
|
|
|
|
|
|
|
$page = new page(__FILE__, 'Home');
|
|
|
|
$page->header();
|
|
|
|
?>
|
|
|
|
|
2021-11-12 16:01:04 +00:00
|
|
|
<main>
|
|
|
|
<section>
|
|
|
|
<h1>Welcome to wishthis</h1>
|
2021-11-15 08:45:36 +00:00
|
|
|
<a href="?page=register">Register</a>
|
2021-11-15 11:55:01 +00:00
|
|
|
<a href="?page=login">Login</a>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<h2>Wishlist</h2>
|
|
|
|
<a href="?page=wishlist">Create a wishlist</a>
|
2021-11-12 16:01:04 +00:00
|
|
|
</section>
|
|
|
|
</main>
|
2021-11-12 15:23:48 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$page->footer();
|
|
|
|
?>
|