saving works now
This commit is contained in:
11
backend/core/urls.py
Normal file
11
backend/core/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path
|
||||
from backend.core import views as v
|
||||
|
||||
app_name = 'core'
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('', v.index, name='index'),
|
||||
path('signup/', v.signup, name='signup'),
|
||||
path('thankyou/', v.thankyou, name='thankyou'),
|
||||
]
|
||||
Reference in New Issue
Block a user