django-cats/cats/templates/home.html
Jan Dittberner 564a00d46d Finish login and registration flow
- add template for login page
- add logout URL
- display user information
2024-09-20 15:59:51 +02:00

10 lines
No EOL
393 B
HTML

{% extends "regular_view.html" %}
{% load i18n %}
{% block content %}
<h1>Welcome to the CAcert Assurer Training System - CATS.</h1>
<p>{% blocktranslate trimmed %}
For background information about the purpose of this application read the
<a href="{{ challenge_wiki_url }}">CAcert Assurer Challenge Wiki page</a>.
{% endblocktranslate %}</p>
{% endblock content %}