OwlCyberSecurity - MANAGER
Edit File: auth_validate.php
<?php //If User is logged in the session['user_logged_in'] will be set to true //if user is Not Logged in, redirect to login.php page. if (!isset($_SESSION['user_logged_in'])) { header('Location:content.php'); } ?>