-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
30 lines (27 loc) · 745 Bytes
/
profile.php
File metadata and controls
30 lines (27 loc) · 745 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
include('db.php');
if (!isset($_SESSION['isUserLoggedIn'])) {
echo "<script>window.location.href='login.php?user_not_logged_in_yet';</script>";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile</title>
</head>
<body style="background-color:#414a4c; color:white; text-align:center;">
<?php include('navbar.php'); ?>
<div class="container" style="margin-top: 20%;">
<h1>
Welcome
</h1>
</p>
<h3>
<?= $_SESSION['email']; ?>
</h3>
</div>
</body>
</html>