You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
'''
|
|
@Date:2022/07/13 11:04:24
|
|
'''
|
|
|
|
|
|
from django.urls import path, re_path
|
|
|
|
from . import views
|
|
|
|
app_name = 'account'
|
|
|
|
urlpatterns = [
|
|
# 登录
|
|
re_path(r'login/$', views.account_login, name='account_login'),
|
|
re_path(r'barcode/$', views.account_barcode, name='account_barcode'),
|
|
# 退出系统
|
|
re_path(r'logout/$', views.account_logout, name='account_logout'),
|
|
]
|