-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstudent-router.php
46 lines (38 loc) · 1.25 KB
/
student-router.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
36
37
38
39
40
41
42
43
44
45
46
<?php
$pageTitle='Students'; //THIS MUST BE SET FOR EACH PAGE
$stylesheet='css/events.css';
require 'header-left-bar.php'; //THIS MUST BE INCLUDED FOR EACH PAGE
?>
<div class="text">
<div style="">
<a style="color:blue;font-size: 20px" href="student-travel-support.php">
<div style="float:left;color:blue;width:100px">
<i class="fa fa-5x fa-plane" aria-hidden="true"></i>
</div>
<div style="padding-top:6%;float:left">
Student Travel Support Information
</div>
</a>
</div>
<div style="clear: both;margin-top:20px">
<a style="color:blue;font-size: 20px;" href="student-paper-award.php">
<div style="float:left;color:blue;width:100px">
<i class="fa fa-4x fa-graduation-cap" aria-hidden="true"></i>
</div>
<div style="padding-top:6%;float:left">
Student Paper Award Information
</div>
</a>
</div>
<div style="clear: both;margin-top:20px">
<a style="color:blue;font-size: 20px;" href="student-room-sharing.php">
<div style="float:left;color:blue;width:100px">
<i class="fa fa-4x fa-hotel" aria-hidden="true"></i>
</div>
<div style="padding-top:6%;float:left">
Student Room Sharing Coordination
</div>
</a>
</div>
</div>
<?php require 'right-bar-footer.php'; //THE MUST BE INCLUDED FOR EACH PAGE ?>