feat: auth

This commit is contained in:
root
2025-10-13 22:35:39 +03:00
parent a378414ea3
commit b3988797c5
7 changed files with 158 additions and 3 deletions

View File

@@ -23,4 +23,7 @@ urlpatterns = [
path('', views.archive),
re_path(r'^article/(?P<article_id>\d+)$', views.get_article, name='get_article'),
path('article/new/', views.create_post),
path('registration/', views.registration),
path('login/', views.login_page),
path('logout/', views.user_logout),
]