nekrochan/templates/login.html

25 řádky
730 B
HTML
Spustitelný soubor

{% extends "base.html" %}
{% block title %}Přihlásit se{% endblock %}
{% block content %}
<div class="container">
<h1 class="title">Přihlásit se</h1>
<form method="post" action="/login">
<table class="form-table">
<tr>
<td class="label">Jméno</td>
<td><input name="username" type="text" required=""></td>
</tr>
<tr>
<td class="label">Heslo</td>
<td><input name="password" type="password" required=""></td>
</tr>
<tr>
<td colspan="2"><input class="button" type="submit" value="Přihlásit se"></td>
</tr>
</table>
</form>
</div>
{% endblock %}