* @author Bill Zimmerman * @license GNU General Public License, version 3 (GPL-3.0) * @version 1.5 * @link https://github.com/billz/raspap-webgui * @see http://sirlagz.net/2013/02/08/raspap-webgui/ */ session_start(); include_once('includes/config.php'); include_once(RASPI_CONFIG.'/raspap.php'); include_once('includes/locale.php'); include_once('includes/functions.php'); include_once('includes/dashboard.php'); include_once('includes/authenticate.php'); include_once('includes/admin.php'); include_once('includes/dhcp.php'); include_once('includes/hostapd.php'); include_once('includes/system.php'); include_once('includes/configure_client.php'); include_once('includes/networking.php'); include_once('includes/themes.php'); include_once('includes/data_usage.php'); include_once('includes/about.php'); $output = $return = 0; $page = $_GET['page']; if (empty($_SESSION['csrf_token'])) { if (function_exists('mcrypt_create_iv')) { $_SESSION['csrf_token'] = bin2hex(mcrypt_create_iv(32, MCRYPT_DEV_URANDOM)); } else { $_SESSION['csrf_token'] = bin2hex(openssl_random_pseudo_bytes(32)); } } $csrf_token = $_SESSION['csrf_token']; if (!isset($_COOKIE['theme'])) { $theme = "custom.css"; } else { $theme = $_COOKIE['theme']; } $theme_url = 'dist/css/'.htmlspecialchars($theme, ENT_QUOTES); ?> <?php echo _("Raspbian WiFi Configuration Portal"); ?>

RaspAP

' , PHP_EOL; } ?>