49 lines
1.7 KiB
Twig
49 lines
1.7 KiB
Twig
{% extends 'left/left.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/login/login.css') }}" media="screen and (min-width: 1300px)">
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/login/login_mid.css') }}" media="screen and (max-width: 1300px)">
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/login/login_small.css') }}" media="screen and (max-width: 750px)">
|
|
{% endblock %}
|
|
|
|
{% block title %}Log in!{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class='content'>
|
|
<form method="post">
|
|
{% if error %}
|
|
<div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
|
{% endif %}
|
|
|
|
{% if app.user %}
|
|
<div class="mb-3">
|
|
You are logged in as {{ app.user.username }}, <a href="{{ path('app_logout') }}">Logout</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
|
|
<div class='pair'>
|
|
<label for="inputNickname">Nickname</label>
|
|
<input type="text" value="{{ last_username }}" name="nickname" id="inputNickname" class="form-control" required autofocus>
|
|
</div>
|
|
<div class='pair' id='pass'>
|
|
<label for="inputPassword">Password</label>
|
|
<input type="password" name="password" id="inputPassword" class="form-control" required>
|
|
</div>
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
|
|
|
|
<div class="checkbox mb-3">
|
|
<label>
|
|
<input type="checkbox" name="_remember_me"> Remember me
|
|
</label>
|
|
</div>
|
|
|
|
<button class="btn btn-lg btn-primary" type="submit">
|
|
Sign in
|
|
</button>
|
|
</form>
|
|
</div>
|
|
{% endblock body %}
|