15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
/**
|
|
* User Configuration File for ZitiNexus Router Enrollment UI
|
|
* This file stores user-changeable settings like username and password
|
|
*/
|
|
|
|
return [
|
|
'username' => 'admin',
|
|
'password_hash' => password_hash('admin123', PASSWORD_DEFAULT),
|
|
'first_login' => true,
|
|
'created_at' => time(),
|
|
'last_updated' => time()
|
|
];
|
|
?>
|