Testversion 1

This commit is contained in:
2026-02-19 19:03:20 +00:00
parent 879ebd53b0
commit 6353ba4707
18 changed files with 734 additions and 58 deletions

View File

@@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block content %}
<section class="card form-card">
<h1>{{ t('upload') }}</h1>
<form method="post" enctype="multipart/form-data" class="form-grid">
<label>
{{ t('file') }}
<input type="file" name="photo" accept=".jpg,.jpeg,.png" required />
</label>
<button class="btn" type="submit">{{ t('upload_submit') }}</button>
</form>
</section>
{% endblock %}