mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-24 23:45:38 +08:00
13 lines
237 B
PHP
13 lines
237 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
* by https://t.me/ibnux
|
|
**/
|
|
|
|
if(Admin::getID()){
|
|
r2(U.'dashboard');
|
|
}if(User::getID()){
|
|
r2(U.'home');
|
|
}else{
|
|
r2(U.'login');
|
|
}
|