Import initial working prototype
This commit is contained in:
31
templates/login.html
Normal file
31
templates/login.html
Normal file
@ -0,0 +1,31 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user