24 lines
478 B
PHP
24 lines
478 B
PHP
<?php
|
|
session_start();
|
|
$activePage = 'CaptivePortal';
|
|
$activeSubPage='accesscontrol';
|
|
include("../elements/master.php");
|
|
//if(isset($_SESSION['token'] ))
|
|
//{
|
|
//include("../elements/master.php");
|
|
//include('../elements/functions.php');
|
|
//}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>acess control page</p>
|
|
</body>
|
|
</html>
|