{% extends 'base.html' %}

{% load i18n %}
{% load crispy_forms_filters %}

{% block title %}{% trans 'Ustaw swoje nowe hasło' %}{% endblock %}

{% block content %}
    <div class="row m-0">
        <div class="col-lg-4 col-md-6 m-auto">
            <div class="bg-white mt-4 p-3 clearfix">
                <h5 class="mt-2 mb-4">{% trans 'Ustaw swoje nowe hasło' %}</h5>
                <form action="." method="post">
                    {% if form %}
                        {% crispy form helper %}
                    {% else %}
                        <div class="alert alert-danger">{{ title }}</div>
                    {% endif %}
                </form>
            </div>
        </div>
    </div>
{% endblock %}