15 lines
433 B
HTML
15 lines
433 B
HTML
{% extends 'parish/base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<p class="is-size-2 has-text-centered">Zaloguj się</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<p class="has-text-centered">
|
|
<button type="submit" class="button is-success">Zaloguj się</button>
|
|
<a href="{% url 'visit' parish.slug %}" class="button is-light">Powrót</a>
|
|
</p>
|
|
</form>
|
|
{% endblock %}
|