-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
36 lines (35 loc) · 979 Bytes
/
Copy pathprofile.php
File metadata and controls
36 lines (35 loc) · 979 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
<?php
session_start();
if (!isset($_SESSION['user_id']))
{
header('Location: index.php');
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Profile</title>
<link rel="stylesheet" href="./css/Uprofile.css">
</head>
<body>
<h1 class="head1">User Dashboard Page</h1>
<h2 class="head2">Welcome , <?php echo $_SESSION['funame']?> <?php echo $_SESSION['luname']?> <h2>
<div class="page">
<nav>
<ul>
<li><a href="add_task.php">Add Task </a></li>
<li><a href="show_tasks.php">Show Task </a></li>
<li><a href="update_profile.php">Update Profile </a></li>
<li><a href="logout.php">Logout </a></li>
<li><a href="delete_account.php">Delete Account </a></li>
</ul>
</nav>
</div>
<div>
<div class="imgg">
</div>
</div>
</body>
</html>