Add remote access feature and UI improvements
- Implement `remoteAccess` functionality in `ApiCLI` for Veyon integration. - Create `selectIP.php` view and associated form for remote access inputs. - Add JSON configuration for lab setups (`labList.json`). - Introduce reusable `home-button` web component. - Update project router and controller to support new `/remoteAccess` and `/conn` routes. - Add custom styles and icons to enhance UI.
This commit is contained in:
@@ -3,7 +3,15 @@
|
||||
class Controller {
|
||||
|
||||
public function index(): void {
|
||||
require_once '../views/home.php';
|
||||
require_once BASE_PATH.'/app/views/home.php';
|
||||
}
|
||||
|
||||
public function remoteAccess() {
|
||||
require_once BASE_PATH.'/app/views/selectIP.php';
|
||||
}
|
||||
|
||||
public function cli() {
|
||||
ApiCLI::testConnection();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user