-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (35 loc) · 1.58 KB
/
Copy pathindex.php
File metadata and controls
37 lines (35 loc) · 1.58 KB
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
<!-- Originally created by Chris Hogan. This is the home view of the user profile -->
<html>
<head>
<?php
include_once('php_includes/header.php');
include_once('php_includes/nav.php');
include('php_includes/sessions.php');
require_once('php_includes/defaultDisplay.php');
?>
<link href="css/main.css" rel="stylesheet" type="text/css">
<title>GameFace: Home</title>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/displayNotifications.js"></script>
</head>
<body onload='displayNotifications()'>
<div id="wrapper">
<div id="view">
<?php include_once('php_includes/sidebar.php'); ?>
<div id="content">
<table id="headings">
<tr>
<td><h2>Notifications</h2></td>
<td><h2>Suggestions</h2></td>
</tr>
</table>
<div id="notifications"></div>
<div id="suggestions">
<?php include_once('php_includes/suggestions.php'); ?>
</div>
</div>
</div>
</div>
<?php include_once('php_includes/footer.php'); ?>
</body>
</html>