-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestIndex.php
More file actions
32 lines (28 loc) · 766 Bytes
/
Copy pathtestIndex.php
File metadata and controls
32 lines (28 loc) · 766 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
<?php
require('testSessions.php');
require('testAuthorize.php');
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View staff</title>
<link rel="stylesheet" href="css/global.css" type="text/css" />
<link rel="stylesheet" href="css/mobile.css" type="text/css" media="only screen and (max-width : 620px)" />
<link rel="stylesheet" href="css/desktop.css" type="text/css" media="only screen and (min-width : 621px)" />
</head>
<body>
<div class="container">
<header>
<h1>Welcome</h1>
<ul>
<li><a href="testLogout.php">Logout</a></li>
</ul>
</header>
</div>
<?php
require('testDebugger.php');
?>
</body>
</html>