{% extends 'base.html.twig' %}
{% block title %}Resetowanie hasła{% endblock %}
{% block work_area %}
<form method="POST" name='form' class="uk-width-expand">
<fieldset class="uk-fieldset uk-width-expand">
<legend class="uk-legend">Rsetowanie hasła</legend>
<div>
<label class="uk-form-label">Adres E-mail:</label>
<div class="uk-form-controls">
<input class="uk-input uk-form-small" type="email" placeholder="Adres e-mail" name="email" required autofocus/>
</div>
<p>Podaj nam adres e-mail, wyślemy Tobie link do ustanowienia nowego hasła.</p>
</div>
</fieldset>
<hr/>
<div>
<button type="submit" class="uk-button uk-button-primary uk-align-right">Wyślij żądanie</button>
</div>
</form>
{% endblock %}
{% block javascripts %}
{% endblock %}