TheMathWizard/controllers/profile.php
2023-01-08 21:08:14 +01:00

10 lines
151 B
PHP

<?php
$heading = "profile";
session_start();
if(!isset($_SESSION["username"])){
header("Location: /");
exit;
}
require "views/profile.view.php";