-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (30 loc) · 709 Bytes
/
Copy pathindex.php
File metadata and controls
30 lines (30 loc) · 709 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
<?php
require_once 'include.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/master.css">
<title>Chat System</title>
</head>
<body>
<?php
if(!isset($_SESSION['userID'])) {
login();
} elseif($_SESSION['status'] = "successfulLogin") {
start();
} else {
login();
}
?>
<footer>
Copyright © 2018 Copyright Holder All Rights Reserved To Ethan Houley.
<div class="debug">
<?php print_r($_SESSION); ?>
</div>
</footer>
</body>
<script src="js/jquery-3.3.1.js" charset="utf-8"></script>
<script src="js/master.js" charset="utf-8"></script>
</html>