{% extends 'admin/master.html' %} {% block body %} {{ super() }}

Welcome!

{% if not current_user.is_authenticated %}

Please log in to continue


You can log in as the default administrator with the following credentials:

  • Email: admin
  • Password: admin

login


Alternatively, you can register as a new administrator using the button below.

Register

{% endif %} {% if current_user.is_authenticated %}

You have successfully logged in.

You now have access to the Users view.

{% endif %}
{% endblock body %}