14 lines
454 B
HTML
14 lines
454 B
HTML
{% extends "base.html"%}
|
|
{% set title = "Login" %}
|
|
{% block content %}
|
|
<h1> Login </h1>
|
|
{% if error %}
|
|
<div class="somethingbad">{{ error }}</div>
|
|
{% 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 %}
|