14 lines
435 B
HTML
14 lines
435 B
HTML
{% extends 'map/base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block h1 %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>Please authenticate before accessing the map.</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button type="submit" class="btn btn-primary">Login</button>
|
|
<a href="{% url 'signup' %}" class="btn btn-secondary">I don't have an account</a>
|
|
</form>
|
|
{% endblock %}
|