my-32bit-cafe/index.php

28 lines
1.1 KiB
PHP

<?php
$cur_page = "Dashboard";
require_once('includes/header.php');
?>
<div class="main_frame">
<div class='page_title'><h1>my 32-bit cafe dashboard</h1></div>
<h2>Welcome, {user}!</h1>
<p>This portal lets you access all the free services provided by <b>32-Bit Cafe</b>. Use the links on the sidebar to see what we offer!</p>
<h2>Getting started</h2>
<p>Just joined us? Have a look at the guides below which can help you get set up with our services!</p>
<ul>
<li>Lorem Ipsum</li>
<li>Dolor sit amet</li>
<li>Lisan al gaib</li>
</ul>
<h2>News Feed</h2>
<ul>
<li>Lorem Ipsum</li>
<li>Dolor sit amet</li>
<li>Lisan al gaib</li>
</ul>
<h2>Want to get involved?</h2>
<p>If you'd like to help us with running and expanding our free services, please join our <a href="#">technomancers group</a>! No matter what your skillset, we would love for you to take part!</p>
</div>
<?php
require_once('includes/footer.php');
?>