-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
46 lines (44 loc) · 1.7 KB
/
Copy pathheader.php
File metadata and controls
46 lines (44 loc) · 1.7 KB
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
// header.php
/*
this file contains the header of the body
*/
?>
<div class="mdl-demo mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header mdl-layout__header--scroll mdl-color--primary">
<!--<div class="mdl-layout--large-screen-only mdl-layout__header-row">
</div>-->
<div class="mdl-layout--large-screen-only mdl-layout__header-row">
<h3><strong>NOTICE BOARD </strong></h3>
</div>
<!--<div class="mdl-layout--large-screen-only mdl-layout__header-row">
</div>-->
<!--<div class="section-spacer"></div>-->
<div class="mdl-layout__tab-bar mdl-js-ripple-effect mdl-color--primary-dark">
<a href="index" class="mdl-layout__tab is-active">Home</a>
<a href="birthday" class="mdl-layout__tab is active">Today's Birthday</a>
<?php
include_once 'functions/islogin.func.php';
if (islogin())
{
?>
<a href="add_notice" class="mdl-layout__tab">Add Notice</a>
<a href="logout" class="mdl-layout__tab">Logout</a>
<?php
}
else
{
?>
<a href="login" class="mdl-layout__tab">Login</a>
<?php
}
?>
<!--<button class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--colored mdl-shadow--4dp mdl-color--accent" id="add">
<i class="material-icons" role="presentation">add</i>
<span class="visuallyhidden">Add</span>
</button>-->
</div>
</header>
</div>
</div>