mirror of
https://github.com/capricornxl/ad-password-self-service.git
synced 2025-08-12 06:32:28 +08:00
update
This commit is contained in:
15
pwdselfservice/urls.py
Normal file
15
pwdselfservice/urls.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.urls import path, include, re_path
|
||||
from django.views.generic.base import RedirectView
|
||||
from django.conf import urls
|
||||
import resetpwd.views
|
||||
from django.conf.urls.static import static
|
||||
|
||||
urlpatterns = {
|
||||
# path('admin/', admin.site.urls)
|
||||
path("favicon.ico", RedirectView.as_view(url='static/img/favicon.ico')),
|
||||
path('', resetpwd.views.resetpwd_index, name='index'),
|
||||
path('resetcheck', resetpwd.views.resetpwd_check_userinfo, name='resetcheck'),
|
||||
path('resetpwd', resetpwd.views.resetpwd_reset, name='resetpwd'),
|
||||
path('resetunlock', resetpwd.views.resetpwd_unlock, name='resetunlock'),
|
||||
path('resetmsg', resetpwd.views.reset_msg, name='resetmsg'),
|
||||
}
|
Reference in New Issue
Block a user