Files
baroness/app/templates/login.html

18 lines
476 B
HTML

{% extends "base.html"%}
{% set title = "Login" %}
{% block content %}
<h3>TODO: </h3>
<ul>
<li>TODO?</li>
</ul>
<h1> Login </h1>
{% if error %}
<p>{{ error }}</p>
{% endif %}
<form name="login" method="post" action="/login">
Username:<br><input type="text" name=username required placeholder="Username"><br>
Passwort:<br><input type="password" name=password required placeholder="Password"><br>
<input type="submit" value="Login">
</form>
{% endblock %}