2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-07-23 23:48:49 +01:00
|
|
|
|
|
|
|
{% block stylesheets %}
|
2020-07-28 17:08:08 +01:00
|
|
|
{{ parent() }}
|
2021-04-29 23:47:42 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/security/security.css') }}">
|
2020-07-23 23:48:49 +01:00
|
|
|
{% endblock %}
|
2020-07-22 02:58:25 +01:00
|
|
|
|
2021-08-11 18:42:15 +01:00
|
|
|
{% block title %}{{ "Log in!" | trans }}{% endblock %}
|
2020-07-22 02:58:25 +01:00
|
|
|
|
2020-10-19 23:45:48 +01:00
|
|
|
{% block body %}
|
2021-04-30 02:51:03 +01:00
|
|
|
<div class='content'>
|
|
|
|
<form method="post">
|
2021-07-26 15:30:55 +01:00
|
|
|
<fieldset>
|
2021-07-28 22:26:25 +01:00
|
|
|
<legend>{{ "Login" | trans }}</legend>
|
2021-07-26 15:30:55 +01:00
|
|
|
|
|
|
|
{% if error %}
|
2021-07-28 22:26:25 +01:00
|
|
|
<div class="alert alert-danger">{{ error.messageKey | trans(error.messageData, 'security') }}</div>
|
2021-07-26 15:30:55 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2021-08-11 18:42:15 +01:00
|
|
|
{% if app.user %}
|
|
|
|
<h1 class="mb-3">
|
|
|
|
{{ "You are logged in as" | trans }} {{ app.user.username }}.
|
|
|
|
<button class="btn btn-lg btn-primary">
|
|
|
|
<a href="{{ path('app_logout') }}">{{ "Logout" | trans }}</a>
|
|
|
|
</button>
|
|
|
|
</h1>
|
|
|
|
{% else %}
|
|
|
|
{# TODO: Login can be done with email, so the id's and stuff should reflect that, along with using the translation facilities #}
|
|
|
|
<label for="inputNickname">{{ "Nickname or Email" | trans }}</label>
|
|
|
|
<input type="text" value="{{ last_login_id }}" name="nickname" id="inputNickname" class="form-control" required autofocus>
|
2021-07-26 15:30:55 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2021-08-11 18:42:15 +01:00
|
|
|
<label for="inputPassword">{{ "Password" | trans }}</label>
|
|
|
|
<input type="password" name="password" id="inputPassword" class="form-control" required>
|
2021-07-26 15:30:55 +01:00
|
|
|
|
|
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
|
|
|
|
|
|
|
|
<p class="checkbox mb-3">
|
2021-08-11 18:42:15 +01:00
|
|
|
<label>{{ "Remember me" | trans }}</label>
|
2021-07-26 15:30:55 +01:00
|
|
|
<input type="checkbox" name="_remember_me">
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<button class="btn btn-lg btn-primary" type="submit">
|
|
|
|
Sign in
|
|
|
|
</button>
|
|
|
|
</fieldset>
|
2021-04-30 02:51:03 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2020-10-19 23:22:31 +01:00
|
|
|
{% endblock body %}
|
2020-10-19 23:45:48 +01:00
|
|
|
|
|
|
|
{% block javascripts %}{% endblock %}
|