mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
17 lines
350 B
PHP
Executable File
17 lines
350 B
PHP
Executable File
<?php
|
|
|
|
if (RASPI_AUTH_ENABLED) {
|
|
$user = $_SERVER['PHP_AUTH_USER'] ?? '';
|
|
$pass = $_SERVER['PHP_AUTH_PW'] ?? '';
|
|
|
|
$auth = new \RaspAP\Auth\HTTPAuth;
|
|
|
|
if (!$auth->isLogged()) {
|
|
if ($auth->login($user, $pass)) {
|
|
$config = $auth->getAuthConfig();
|
|
} else {
|
|
$auth->authenticate();
|
|
}
|
|
}
|
|
}
|