#!/usr/bin/env python # -*- encoding: utf-8 -*- ''' @Date:2022/07/13 11:04:24 ''' from django.urls import path, re_path from django.conf.urls import include from django.conf.urls.static import static from django.conf import settings 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'), ]