28 lines
611 B
PHP
28 lines
611 B
PHP
<?php
|
|
// Initialize the session
|
|
session_start();
|
|
|
|
// Check if the user is logged in, if not then redirect him to login page
|
|
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
|
|
header("location: /login");
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
|
|
<html lang="en">
|
|
<?php include 'global.php';?>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper w-50 m-auto">
|
|
<h1 class="my-5 mx-auto">Yo, <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b>.</h1>
|
|
<p>
|
|
<a href="reset-password.php" class="btn btn-Success">Reset Your Password</a>
|
|
</p>
|
|
|
|
<?php include 'footer.php';?>
|
|
|
|
|
|
|