We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad30fe commit 4d00ecaCopy full SHA for 4d00eca
backend/Welcomepage.php
@@ -4,7 +4,7 @@
4
5
// Check if the user is logged in, if not then redirect him to login page
6
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
7
- header("location: login.php");
+ header("location: index.php");
8
exit;
9
}
10
?>
@@ -25,5 +25,8 @@
25
<a href="resetpassword.php" class="btn btn-warning">Reset Your Password</a>
26
<a href="logout.php" class="btn btn-danger ml-3">Sign Out of Your Account</a>
27
</p>
28
+<?php
29
+include 'SelectUser.php'
30
+?>
31
</body>
32
</html>
0 commit comments