2019-03-02 15:49:05 +01:00
|
|
|
{% extends 'map/base.html' %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
2019-03-02 15:53:27 +01:00
|
|
|
{% block h1 %}Login{% endblock %}
|
|
|
|
|
2019-03-02 15:49:05 +01:00
|
|
|
{% block content %}
|
2019-03-02 15:53:27 +01:00
|
|
|
<p>Please authenticate before accessing the map.</p>
|
2019-03-02 15:49:05 +01:00
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
<button type="submit" class="btn btn-primary">Login</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|