forked from riprap/Survey-Ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
37 lines (30 loc) · 852 Bytes
/
profile.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
<?php
/*
File Name: profile.php
Authors Name: Scott Montgomery and Nolan Knill
Web Site Name: Survey Site
File Description: The page that shows all the details of the current user's profile.
*/
$page_name = "My Profile";
include "functions/functions.php";
include 'partials/html_header.php';
?>
<body>
<?php include 'partials/header.php'; ?>
<div class="row">
<div class="large-9 columns" role="content">
<h3>
<?php echo $page_name;?>
</h3>
<?php include 'partials/messages.php'; ?>
<ul>
<li>Name: <?php echo $logged_in_profile['name'];?></li>
<li>Email: <?php echo $logged_in_profile['email'];?></li>
<li><a href="edit_profile.php">Edit My Profile</a></li>
</ul>
</div>
<?php include 'partials/sidebar.php' ?>
</div>
<?php include 'partials/footer.php'; ?>
</body>
</html>