Initial plant reference and basic login
This commit is contained in:
parent
a2dba58fe4
commit
cada3c7357
31 changed files with 637 additions and 0 deletions
12
planner/urls.py
Normal file
12
planner/urls.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = "planner"
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
path("login/", views.sign_in, name="login"),
|
||||
path("logout/", views.sign_out, name="logout"),
|
||||
path("register/", views.sign_up, name="register"),
|
||||
]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue