This repository has been archived on 2025-09-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nekrochan/templates/login.html
2025-09-28 12:59:09 +02:00

25 lines
730 B
HTML

{% 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 %}