13 lines
431 B
Python
13 lines
431 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from dashboard import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='dashboard-index'),
|
|
path('login/', views.user_login, name='dashboard-login'),
|
|
path('refresh_captcha/', views.refresh_captcha, name='refresh-captcha'),
|
|
path('logout/', views.user_logout, name='dashboard-logout'),
|
|
path('register/', views.register, name='dashboard-register'),
|
|
]
|