premier commit
This commit is contained in:
commit
7cedb3e50b
22 changed files with 372 additions and 0 deletions
7
users/urls.py
Normal file
7
users/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
from django.conf.urls.static import static
|
||||
from django.contrib.auth import views as auth_views
|
||||
|
||||
urlpatterns = [
|
||||
path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue