mirror of
https://github.com/hequan2017/seal.git
synced 2026-05-04 12:02:06 +08:00
v0.1 基础版本
v0.1 基础版本
This commit is contained in:
10
system/urls.py
Normal file
10
system/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from system.views import login_view, UserPasswordUpdateView, logout_view
|
||||
|
||||
app_name = "system"
|
||||
|
||||
urlpatterns = [
|
||||
path('login', login_view, name="login"),
|
||||
path('password_update', UserPasswordUpdateView.as_view(), name="password_update"),
|
||||
path('logout', logout_view, name="logout"),
|
||||
]
|
||||
Reference in New Issue
Block a user