Files
CyberPanel/loginSystem/urls.py
Master3395 54da24dd55 Remove deprecated CyberPanel installation fix script and update README and guides to include new 2FA authentication features and installation instructions. Enhance user management with WebAuthn passkey support, including UI updates for passkey registration and management.
> Thank you!
>
> One more question: is it possible to add WebAuthn 2FA/passkeys/passwordless authentication? Right now, the panel login is the weakest link (assuming SSH key login for the server and tight security on the website).

It has now been added:
https://github.com/usmannasir/cyberpanel/issues/1509#issuecomment-3315474043
2025-09-21 19:22:36 +02:00

10 lines
305 B
Python

from django.urls import path, include
from . import views
urlpatterns = [
path('', views.loadLoginPage, name='adminLogin'),
path('verifyLogin', views.verifyLogin, name='verifyLogin'),
path('logout', views.logout, name='logout'),
path('webauthn/', include('loginSystem.webauthn_urls')),
]