-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.php
52 lines (50 loc) · 2.6 KB
/
staff.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
<?php
session_start();
$sqluser = "bdb3dd3c5ad4b1";
$sqlpassword = "ec474796";
$sqldatabase = "heroku_45fb7d407a198a1";
?>
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" />
<link href="ESF.png" rel="shortcut icon" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Authentic and Permanent</title>
<meta charset="utf-8"/>
<meta name="description" content="A posthuman art magazine for technological determinists."/>
<meta name="keywords" content="Art"/>
</head>
<body>
<div class="w3-sidebar w3-bar-block w3-black" style="width:15%;right:0">
<div id="sidebar-elements">
<a href="./home.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Home]</a>
<a href="./about.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[About]</a>
<a href="./latestissue.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Latest Issue]</a>
<a href="./pastissues.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Past Issues]</a>
<a href="./artists.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Artists]</a>
<a href="./staff.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Staff]</a>
<a href="./submissions.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Submissions]</a>
<a href="./login.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Login]</a>
<a href="./shop.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Shop]</a>
<a href="./donate.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Donate]</a><br><br><br><br>
<div id="loggedin" class="w3-bar-item">
<?php if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true) {
echo "Logged in as:";
echo "<br>";
echo $_SESSION["fname"].' (@'.$_SESSION["uname"].').';
echo "<br>";
echo '<a href="./loggedout.php" class="w3-hover-none w3-hover-text-red">[Logout?]</a>';
}?>
</div>
</div>
</div>
<div id="content">
<a href="./home.php">
<img class="logo" src="./aplogo.png" alt="logo" width="20%" height="10%"/>
</a>
<h1>Staff Pages Go Here</h1>
<p>Pretend this is a list of staff.</p>
</div>
</body>
</html>