8 lines
155 B
Python
8 lines
155 B
Python
from django.urls import path
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path("", index),
|
|
path("login", index),
|
|
path("account-creation", index)
|
|
] |