from django.urls import path from hc.accounts import views urlpatterns = [ path("login/", views.login, name="hc-login"), path("logout/", views.logout, name="hc-logout"), path("signup/", views.signup, name="hc-signup"), path("login_link_sent/", views.login_link_sent, name="hc-login-link-sent"), path("link_sent/", views.link_sent, name="hc-link-sent"), path( "check_token///", views.check_token, name="hc-check-token", ), path("profile/", views.profile, name="hc-profile"), path("profile/notifications/", views.notifications, name="hc-notifications"), path("close/", views.close, name="hc-close"), path( "unsubscribe_reports//", views.unsubscribe_reports, name="hc-unsubscribe-reports", ), path("set_password//", views.set_password, name="hc-set-password"), path("change_email/done/", views.change_email_done, name="hc-change-email-done"), path("change_email//", views.change_email, name="hc-change-email"), ]