summaryrefslogtreecommitdiffstats
path: root/templates/openid/userpage.html
diff options
context:
space:
mode:
authorPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-06 19:12:13 +0200
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-24 18:02:21 +0200
commitf461a713ce28e434a34dca4e4d1abbfe255ef1ff (patch)
tree20e3167cfe3b28e8c7163e661fc757ffd8df228b /templates/openid/userpage.html
parentc6fab2542f52f6cca71c207c1925785971e51295 (diff)
downloadipsilon-f461a713ce28e434a34dca4e4d1abbfe255ef1ff.tar.gz
ipsilon-f461a713ce28e434a34dca4e4d1abbfe255ef1ff.tar.xz
ipsilon-f461a713ce28e434a34dca4e4d1abbfe255ef1ff.zip
Add OpenIDP Provider
This commit implements all the core functionality needed to expose an OpenID Identity Provider including a framework to dynamycally add extensions. Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com> Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'templates/openid/userpage.html')
-rw-r--r--templates/openid/userpage.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/openid/userpage.html b/templates/openid/userpage.html
new file mode 100644
index 0000000..db87974
--- /dev/null
+++ b/templates/openid/userpage.html
@@ -0,0 +1,10 @@
+{% extends "master.html" %}
+{% block main %}
+<div class="col-sm-12">
+ <div id="content">
+ <p>This is the OpenID landing page for {{ username }}</p>
+ <p>This page is used by the OpenID protocol and has no other use.</p>
+ <p>You can go to the <a href="{{ basepath }}">main page</a> instead.</p>
+ </div>
+</div>
+{% endblock %}