16 lines
386 B
PHP
16 lines
386 B
PHP
|
<?php
|
||
|
require_once __DIR__ . '/../seria.php';
|
||
|
|
||
|
if(!$sUserInfo->isLoggedIn()) {
|
||
|
http_response_code(404);
|
||
|
die('You must be logged in to view this page.');
|
||
|
}
|
||
|
|
||
|
$tPageTitle = 'Settings';
|
||
|
|
||
|
require_once __DIR__ . '/_header.php';
|
||
|
|
||
|
echo 'Provide option to reset pass key and shit here, maybe also a nuke tracker profile option but probably not.';
|
||
|
|
||
|
require_once __DIR__ . '/_footer.php';
|