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
832 B
33 lines
832 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}
|
|
Login
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{{ parent() }}
|
|
<main>
|
|
<div class="loginDiv">
|
|
{% block body %}
|
|
{% if error %}
|
|
<div>{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
|
{% endif %}
|
|
|
|
<form action="{{ path('users_login') }}" method="post">
|
|
<label for="username">Email:</label>
|
|
<input type="text" id="username" name="_username" value="{{ last_username }}">
|
|
|
|
<label for="password">Heslo:</label>
|
|
<input
|
|
type="password" id="password" name="_password">
|
|
|
|
{# If you want to control the URL the user is redirected to on success
|
|
<input type="hidden" name="_target_path" value="/account"> #}
|
|
|
|
<button type="submit">Přihlásit se</button>
|
|
</form>
|
|
{% endblock %}
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|