12 lines
209 B
Python
12 lines
209 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
app_name = "account"
|
|
|
|
urlpatterns = [
|
|
path("", views.account, name="account"),
|
|
path("register/", views.account_register, name="account_register"),
|
|
]
|