Added login instructions

This commit is contained in:
Tris 2020-09-14 14:01:29 +10:00
parent e8e0f1a8ee
commit 043f57cc6a

View File

@ -1,6 +1,11 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<div class="narrow">
<p style="text-align: center">
Login is only required to administer a project.<br/>
If you have an ensemble code <a href="{% url 'register' %}">enter it here</a> instead.
</p>
<form method="POST" class="vertical"> <form method="POST" class="vertical">
{% csrf_token %} {% csrf_token %}
{{ form }} {{ form }}
@ -8,4 +13,5 @@
<button type="submit">Login</button> <button type="submit">Login</button>
</div> </div>
</form> </form>
</div>
{% endblock %} {% endblock %}