friendsmap/map/templates/registration/login.html

15 lines
435 B
HTML
Raw Normal View History

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>
2019-03-04 18:44:56 +01:00
<a href="{% url 'signup' %}" class="btn btn-secondary">I don't have an account</a>
2019-03-02 15:49:05 +01:00
</form>
{% endblock %}