TVPNBackend/panel/index.php
2024-10-17 13:51:49 -04:00

16 lines
390 B
PHP

<?php
include_once($_SERVER['DOCUMENT_ROOT'] . '/includes/authcheck.php');
include_once($_SERVER['DOCUMENT_ROOT'] . '/db_config.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../assets/css/style.css">
<title>TVPN Panel</title>
</head>
<body>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/header.php'); ?>
<h1>Hello World!</h1>
</body>
</html>