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.
resources-manager-webui/templates/security/login.html.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 %}