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.
33 lines
898 B
33 lines
898 B
{% 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 %}
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|