zitinexus-router-script/UI/includes/user_config.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()
];
?>