summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-21 19:12:09 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-21 19:12:09 +0000
commit326b62ce95705c0e8c8b31259c4962fe1c9db273 (patch)
tree961ebf46c5d0a3fc91dd2b4d40278e70be1c938f
parent883f2abb51f460f3227dc7d4b330cceff3e96150 (diff)
downloadinfrastructure-326b62ce95705c0e8c8b31259c4962fe1c9db273.tar.gz
openid_provider: Fix URL in index template -- it should be openid.baserock.org
-rw-r--r--baserock_openid_provider/templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/baserock_openid_provider/templates/index.html b/baserock_openid_provider/templates/index.html
index 5b2d3555..d5748a83 100644
--- a/baserock_openid_provider/templates/index.html
+++ b/baserock_openid_provider/templates/index.html
@@ -5,7 +5,7 @@
<p>This is the Baserock OpenID provider.</p>
{% if user.is_authenticated %}
- <p>Your OpenID is: <a href="http://login.baserock.org/openid/{{ user.username }}">http://login.baserock.org/openid/{{ user.username }}</a></p>
+ <p>Your OpenID is: <a href="http://openid.baserock.org/openid/{{ user.username }}">http://openid.baserock.org/openid/{{ user.username }}</a></p>
{% endif %}
{% endblock %}