diff --git a/templates/base.html b/templates/base.html index 09dadd7..a818a26 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,6 +6,12 @@ {% block title %}Zeus WPI Kelderregistratiesysteem™{% endblock %} {% block styles %}{% endblock %}

Zeus WPI Kelderregistratiesysteem™

+
{% block content %}{% endblock %} - +
+ diff --git a/users/templates/profile.html b/users/templates/profile.html index d2ba0cb..b83aed3 100644 --- a/users/templates/profile.html +++ b/users/templates/profile.html @@ -2,42 +2,19 @@ {% block title %}KeRS - Profile{% endblock %} -{% block styles %} - -{% endblock %} - {% block content %} -
-

Profile

- {% if user.is_authenticated %} -

Username: {{ username }}

- - - - - - Logout - {% else %} -

Not logged in

- Login - {% endif %} -
+

Profile

+ {% if user.is_authenticated %} +

Username: {{ username }}

+ + + + + + Logout + {% else %} +

Not logged in

+ Login + {% endif %} {% endblock %}