-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
21 lines (21 loc) · 700 Bytes
/
index.php
File metadata and controls
21 lines (21 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$PageTitle="New Page Title";
$HighlightMarginLeft="0";
function customPageHeader(){?>
<!--h1>Sign Up0</h1-->
<?php }
include_once('header.php');
?>
<h1>Home</h1>
<p>A WIP sign-in and forum site. Thank you for visiting and I hope you have a wonderful day!</p>
<br>
<h4>Updates</h4>
<ul>
<li>Spicy Navbar that changes it's highlighted button depending on which page you're on</li>
<li>Bootstrap tables to format singup pages</li>
<li>WIP footer I'm having trouble pushing the bottom of the page >:</li>
<li>Sign up and login system now works! Now to make them do somnething 0-0</li>
</ul>
<?php
include_once('footer.php');
?>