2019-12-26 15:17:48 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2019-12-27 14:53:15 +01:00
|
|
|
{% block title %}Log in{% endblock %}
|
2019-12-26 15:17:48 +01:00
|
|
|
|
2019-12-27 15:35:02 +01:00
|
|
|
{% block overcontent %}
|
|
|
|
<section class="overnav">
|
|
|
|
<form method="post">
|
|
|
|
<h2>Please sign in</h2>
|
|
|
|
<label for="inputEmail">Email</label> <input type="email" value="{{ last_username }}" name="email" id="inputEmail" required autofocus>
|
|
|
|
<label for="inputPassword">Password</label> <input type="password" name="password" id="inputPassword" required>
|
|
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}"/>
|
|
|
|
<input type="submit" value="Sign in"/>
|
|
|
|
</form>
|
|
|
|
</section>
|
2019-12-26 15:17:48 +01:00
|
|
|
{% endblock %}
|