Nekrocuck

This commit is contained in:
2025-09-28 12:59:09 +02:00
commit a2d093954d
402 changed files with 13763 additions and 0 deletions

24
templates/login.html Normal file
View File

@@ -0,0 +1,24 @@
{% 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 %}