mirror of
https://github.com/resources-manager/resources-manager-webui.git
synced 2024-11-01 04:10:36 +01:00
16 lines
617 B
Twig
16 lines
617 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Log in{% endblock %}
|
|
|
|
{% 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>
|
|
{% endblock %}
|