diff --git a/humbug/urls.py b/humbug/urls.py
index 89b4de0e2c..8640f92d51 100644
--- a/humbug/urls.py
+++ b/humbug/urls.py
@@ -16,6 +16,7 @@ import zephyr.forms
urlpatterns = patterns('',
url(r'^$', 'zephyr.views.home'),
url(r'^accounts/login/openid/$', 'django_openid_auth.views.login_begin', name='openid-login'),
+ url(r'^accounts/login/openid/done/$', 'zephyr.views.process_openid_login', name='openid-complete'),
url(r'^accounts/login/openid/done/$', 'django_openid_auth.views.login_complete', name='openid-complete'),
# We have two entries for accounts/login to allow reverses on the Django
# view we're wrapping to continue to function.
diff --git a/templates/confirmation/confirm_preregistrationuser.html b/templates/confirmation/confirm_preregistrationuser.html
index 3d2cbb17a8..a8946cf7e4 100644
--- a/templates/confirmation/confirm_preregistrationuser.html
+++ b/templates/confirmation/confirm_preregistrationuser.html
@@ -12,6 +12,7 @@ post to another view which executes in our code to produce the desired form.
{% csrf_token %}
+