friendsmap/map/templates/registration/login.html

11 lines
252 B
HTML
Raw Normal View History

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