13 lines
360 B
Python
13 lines
360 B
Python
|
from django.http import HttpResponse
|
||
|
from django.urls import path, re_path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("", views.me, name="me"),
|
||
|
path("me/", views.me, name="me_exp"),
|
||
|
path("login/", views.auth_login, name="login"),
|
||
|
path("logout/", views.auth_logout, name="logout"),
|
||
|
path("register/", views.auth_register, name="register"),
|
||
|
]
|