-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
43 lines (35 loc) · 1.02 KB
/
header.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
<!-- Modularized Header Component -->
<!-- Sidenav -->
<div id="sidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="./apply.php">Apply</a>
<a href="./about.php">About</a>
<a href="./viewstatus.php">View Status</a>
<a href="./admin">Admin</a>
<a href="./contact.php">Contact</a>
<br>
<div align="center"><div class="bar"></div></div>
<br/>
❤ <a href='https://deve-sh.github.io/' target="_blank">Devesh Kumar</a>
</div>
<div class="header">
<div class="row headercontainer">
<div class="column col-10">
<a href='./'>
<span class='title'>
<?php
if(isset($config['appname']))
echo $config['appname'];
else
echo "Permit System";
?>
</span>
</a>
</div>
<div class="column col-2 rightcol">
<span onclick="openNav()"><i class="fas fa-bars fa-lg" style="cursor: pointer;"></i></span>
</div>
</div>
</div>
<!-- Script for sidenav -->
<script type="text/javascript" src="./js/sidenavScript.js"></script>