image-gallery/templates/login.html

32 lines
582 B
HTML

{% extends "base" %}
{% block head %}
{{super()}}
<style>
html,
body {
height: 100%;
margin: 0;
}
form {
display: flex;
align-items: center;
height: 100%;
}
input {
margin: 0 auto;
font-size: 1.5rem;
flex: 20rem 0 1;
min-width: 0;
}
</style>
{% endblock head %}
{% block main %}
<form method="post" action="/authenticate">
<input type="password" placeholder="Passwort eingeben…" name="password" autofocus="autofocus" />
</form>
{% endblock main %}