added user management system
This commit is contained in:
parent
0b31a83f83
commit
8e855e0748
16 changed files with 446 additions and 3 deletions
7
invsystem/user_manager/urls.py
Normal file
7
invsystem/user_manager/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index'),
|
||||
path('register', views.register, name='register'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue