This commit is contained in:
github
2019-07-15 15:50:09 +08:00
parent 5794b791bc
commit 666bb5327d
41 changed files with 1790 additions and 0 deletions

15
pwdselfservice/urls.py Normal file
View 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'),
}