You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

{% extends 'base.html.twig' %}
{% block title %}
Login
{% endblock %}
{% block body %}
{{ parent() }}
<main>
<div class="loginDiv">
<form action="{{ path('users_login') }}" method="post">
<label for="username">Uživatelské jméno</label>
<input type="text" name="username" id="username" value="{{ last_username }}" required/>
<label for="password">Heslo</label>
<input type="password" name="password" id="password" placeholder="********" required/>
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
<label>
<input type="checkbox" name="_remember_me" checked>
Zůstat přihlášen
</label>
<input type="submit" value="Přihlásit se"/>
</form>
{% if error %}
<p class="login-form__error">{{ error.messageKey|trans(error.messageData, 'security') }}</p>
{% endif %}
<!--{{ form_start(form, {'action': path('users_login'), 'method': 'POST'}) }}
{{ form_widget(form) }}
<input type="submit"/>
{{ form_end(form) }}-->
</div>
</main>
{% endblock %}

Powered by TurnKey Linux.