|
|
@ -13,6 +13,10 @@ function DisplayAuthConfig($username, $password){
|
|
|
|
} else if ($new_username == '') {
|
|
|
|
} else if ($new_username == '') {
|
|
|
|
$status->addMessage('Username must not be empty', 'danger');
|
|
|
|
$status->addMessage('Username must not be empty', 'danger');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (!file_exists(RASPI_ADMIN_DETAILS)) {
|
|
|
|
|
|
|
|
$tmpauth = fopen(RASPI_ADMIN_DETAILS, 'w');
|
|
|
|
|
|
|
|
fclose($tmpauth);
|
|
|
|
|
|
|
|
}
|
|
|
|
if ($auth_file = fopen(RASPI_ADMIN_DETAILS, 'w')) {
|
|
|
|
if ($auth_file = fopen(RASPI_ADMIN_DETAILS, 'w')) {
|
|
|
|
fwrite($auth_file, $new_username.PHP_EOL);
|
|
|
|
fwrite($auth_file, $new_username.PHP_EOL);
|
|
|
|
fwrite($auth_file, password_hash($_POST['newpass'], PASSWORD_BCRYPT).PHP_EOL);
|
|
|
|
fwrite($auth_file, password_hash($_POST['newpass'], PASSWORD_BCRYPT).PHP_EOL);
|
|
|
|