-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
37 lines (29 loc) · 945 Bytes
/
Copy pathheader.php
File metadata and controls
37 lines (29 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link href="stylesheet.css" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
</head>
<body>
<header>
<div id="left">
<a href="./index.php?action=admin" class="admin button">
Admin
</a>
<?php if(isset($_SESSION['is_valid_admin'])) : ?>
<a href="./index.php?action=logout" class="logout button">
Logout
</a>
<?php endif; ?>
</div>
<div id="right">
<a href="./donate.php" class="donate button">
Donate
</a>
</div>
<h1 id="header_title">
<a href="index.php?action=home">Campaign HQ</a>
</h1>
</header>