You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
443 B

10 years ago
10 years ago
  1. from django.conf.urls import url
  2. from hc.accounts import views
  3. urlpatterns = [
  4. url(r'^login/$', views.login, name="hc-login"),
  5. url(r'^logout/$', views.logout, name="hc-logout"),
  6. url(r'^login_link_sent/$', views.login_link_sent, name="hc-login-link-sent"),
  7. url(r'^check_token/([\w-]+)/([\w-]+)/$', views.check_token, name="hc-check-token"),
  8. ]