-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
84 lines (62 loc) · 2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
include("config/config.php");
$name = $_SESSION['name'];
$email = $_SESSION['email'];
$img = $_SESSION['imgurl'];
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.js"></script>
<script src="assets/js/bootbox.js"></script>
<script src="assets/js/jquery.Jcrop.js"></script>
<script src="assets/js/jcrop_bits.js"></script>
<script src="assets/js/upload.js"></script>
<!-- css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/jquery.Jcrop.css">
</head>
<body>
<!--<div class="container">
<ul class="progressbar">
<li class="active">login</li>
<li>choose interest</li>
<li>add friends</li>
<li>View map</li>
</ul>
-->
<div class="top_bar">
<div class="logo">
<a href="index.php">COMPLAIN<strong>BOX</strong></a>
</div>
<nav>
<a href='' class="login_name">
<?php echo $name; ?>
</a>
<a href="#">
<i class="fa fa-home fa-2x"></i>
</a>
<a href="#">
<i class="fa fa-envelope fa-2x"></i>
</a>
<a href="#">
<i class="fa fa-bell fa-2x"></i>
</a>
<a href="#">
<i class="fa fa-info-circle fa-2x"></i>
</a>
<a href="#">
<i class="fa fa-cog fa-2x"></i>
</a>
<a href="index.php" onclick="signOut">
<i class="fa fa-sign-out fa-2x"></i>
</a>
</nav>
</div>