2015-06-12 20:49:35 +03:00

11 lines
452 B
Python

from django.conf.urls import url
from hc.accounts import views
urlpatterns = [
url(r'^create/$', views.create, name="hc-create-account"),
url(r'^login/$', views.login, name="hc-login"),
url(r'^login_link_sent/$', views.login_link_sent, name="hc-login-link-sent"),
url(r'^check_token/([\w-]+)/([\w-]+)/$', views.check_token, name="hc-check-token"),
]