from django.urls import path

from accounts import views_auth, views_profile

app_name = "accounts"

urlpatterns = [
    path("signup/", views_auth.signup, name="signup"),
    path("login/", views_auth.login_view, name="login"),
    path("logout/", views_auth.logout_view, name="logout"),
    path("profile/", views_profile.profile, name="profile"),
]
