1.0.0: Edit functionality added

This commit is contained in:
2026-05-10 02:38:19 +02:00
parent 39d34bf51c
commit 4905e662f0
23 changed files with 1094 additions and 740 deletions

View File

@@ -1,24 +1,24 @@
{% extends "template.html" -%}
{% block content -%}
<div class="container">
<div class="logging">
<h1>Sign In</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.username.label }}<br>
{{ form.username(size=32) }}
</p>
<p>
{{ form.password.label }}<br>
{{ form.password(size=32) }}
</p>
<p>{{ form.submit() }}</p>
{% for mesg in get_flashed_messages() -%}
<p>{{ mesg }}</p>
{% endfor -%}
</form>
</div>
</div>
<div class="container">
<div class="logging">
<h1>Sign In</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.username.label }}<br>
{{ form.username(size=32) }}
</p>
<p>
{{ form.password.label }}<br>
{{ form.password(size=32) }}
</p>
<p>{{ form.submit() }}</p>
{% for mesg in get_flashed_messages() -%}
<p>{{ mesg }}</p>
{% endfor -%}
</form>
</div>
</div>
{% endblock -%}