You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
Twig
32 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Log in!{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1>Sign in</h1>
|
|
<form method="post">
|
|
{% if error %}
|
|
<div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
|
{% endif %}
|
|
|
|
<label for="username">Email</label>
|
|
<input type="email" value="{{ last_username }}" name="_username" id="username" class="form-control" autocomplete="email" required autofocus>
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" name="_password" id="password" class="form-control" autocomplete="current-password" required>
|
|
|
|
<input type="hidden" name="_csrf_token"
|
|
value="{{ csrf_token('authenticate') }}"
|
|
>
|
|
|
|
<div class="checkbox mb-3">
|
|
<label>
|
|
<input type="checkbox" name="_remember_me" id="remember_me">
|
|
<label for="remember_me">Remember me</label>
|
|
</label>
|
|
</div>
|
|
|
|
<button class="btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
</form>
|
|
{% endblock %}
|