-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.php
More file actions
40 lines (26 loc) · 885 Bytes
/
user.php
File metadata and controls
40 lines (26 loc) · 885 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
38
39
40
<?php
session_start();
include("includes/header.php");
?>
<!-- Navbar ================================================== -->
<?php
if( !isset($_SESSION['user_id']) && empty(isset($_SESSION['user_id'])) )
{ header("location:index.php"); }
include("includes/navbar.php"); ?>
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<?php include("includes/slidebar.php"); ?>
<?php include("modals/post.php");
include("modals/alert.php");?>
<div class="container marketing" id="user_parent">
<!-- START CONTENT -->
<div id="user-content" >
<?php include("includes/write_blog.php");
?>
</div>
<div id="user-comments"></div>
<!-- END CONTENT -->
<?php
include("includes/footer.php");
?>