summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'baserock_openid_provider/templates/index.html')
-rw-r--r--baserock_openid_provider/templates/index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/baserock_openid_provider/templates/index.html b/baserock_openid_provider/templates/index.html
new file mode 100644
index 00000000..1cb4bf73
--- /dev/null
+++ b/baserock_openid_provider/templates/index.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<p>This is the Baserock OpenID provider.</p>
+
+{% if user.is_authenticated %}
+ <p>You are registered as {{ user.get_full_name }}.</p>
+
+ <p>Your OpenID is:
+ <a href="https://openid.baserock.org/openid/{{ user.username }}/">https://openid.baserock.org/openid/{{ user.username }}/</a>
+ </p>
+{% endif %}
+
+{% endblock %}