- Created `unlogged-layout.php` and `unlogged.php` for the login page layout. - Implemented `main-view.php` for system update management with progress tracking. - Added `user-2fa.php` for two-factor authentication verification. - Developed `user-edit.php` for editing user details and privileges. - Introduced `users-list.php` for displaying and managing user accounts. - Added `.htaccess` configuration for URL rewriting and security settings.
10 lines
194 B
PHP
10 lines
194 B
PHP
<?php
|
|
;
|
|
$a = \S::get( 'a' );
|
|
|
|
if ( $a == 'check_login' )
|
|
{
|
|
$response = \admin\factory\Users::check_login( \S::get( 'login' ), \S::get( 'user_id' ) );
|
|
echo json_encode( $response );
|
|
exit;
|
|
} |