mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-22 18:24:23 +00:00
20 lines
520 B
Twig
20 lines
520 B
Twig
{% extends "::base.html.twig" %}
|
|
|
|
{% block title %}ChillMainBundle:Login:login{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Welcome to the Login:login page</h1>
|
|
|
|
<p>{{ error }}</p>
|
|
|
|
<form method="POST" action="{{ path('login_check') }}">
|
|
<input type="text" name="_username" value="{{ last_username }}" />
|
|
<input type="password" name="_password" />
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />
|
|
|
|
<button type="submit">{{ 'Login'|trans }}</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|