-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.php
35 lines (33 loc) · 1.12 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
////////////////////////////////////////////////////////////////////////////
// SCHEDULE MAKER
//
// @author Ben Russell ([email protected])
//
// @file index.php
// @descrip Index page for schedule maker. Displays a static home page with
// links to everything.
////////////////////////////////////////////////////////////////////////////
// If the link is to ?s=yadayada Redirect to the schedule page
if(isset($_GET['s'])) {
require_once("./inc/config.php");
header("Location: {$HTTPROOTADDRESS}schedule.php?mode=old&id={$_GET['s']}");
die();
}
require "./inc/header.inc";
?>
<div id="mainMenu">
<div class='navItem'>
<a href='generate.php'><img src='img/calendar.png' alt='Make a Schedule'></a>
<div><a href='generate.php'>Make a Schedule</a></div>
</div>
<div class='navItem'>
<a href='browse.php'><img src='img/browse.png' alt='Browse Courses'></a>
<div><a href='browse.php'>Browse Courses</a></div>
</div>
<div class='navItem'>
<a href='roulette.php'><img src='img/roulette.png' alt='Course Roulette'></a>
<div><a href='roulette.php'>Course Roulette</a></div>
</div>
</div>
<? require "./inc/footer.inc"; ?>