summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'baserock_openid_provider/templates/base.html')
-rw-r--r--baserock_openid_provider/templates/base.html39
1 files changed, 31 insertions, 8 deletions
diff --git a/baserock_openid_provider/templates/base.html b/baserock_openid_provider/templates/base.html
index f491adf6..26af1a30 100644
--- a/baserock_openid_provider/templates/base.html
+++ b/baserock_openid_provider/templates/base.html
@@ -1,14 +1,37 @@
-<html>
+{% load i18n %}
+<!DOCTYPE html>
+<html lang="en">
+
<head>
-<title>
- {% block title %}
- {% endblock %}
-</title>
- {% block extrahead %}
- {% endblock %}
+ <link rel="stylesheet" href="{{ STATIC_URL }}style.css" />
+ <title>{% block title %}User test{% endblock %}</title>
</head>
+
<body>
- {% block content %}
+ <div id="header">
+ {% block header %}
+ <a href="{% url 'index' %}">{% trans "Home" %}</a> |
+
+ {% if user.is_authenticated %}
+ {% trans "Logged in" %}: {{ user.username }}
+ (<a href="{% url 'auth_logout' %}">{% trans "Log out" %}</a> |
+ <a href="{% url 'auth_password_change' %}">{% trans "Change password" %}</a>)
+ {% else %}
+ <a href="{% url 'auth_login' %}">{% trans "Log in" %}</a>
+ {% endif %}
+ <hr />
+ {% endblock %}
+ </div>
+
+ <div id="content">
+ {% block content %}{% endblock %}
+ </div>
+
+ <div id="footer">
+ {% block footer %}
+ <hr />
{% endblock %}
+ </div>
</body>
+
</html>