Files
MtoRagSystem/templates/admin/document/new.html.twig
2026-02-12 10:03:52 +01:00

24 lines
615 B
Twig

{% extends 'admin/base.html.twig' %}
{% block title %}Neues Dokument{% endblock %}
{% block body %}
<h1 class="h4 mb-4">Neues Dokument</h1>
<form method="post" enctype="multipart/form-data">
<div class="mb-3">
<label class="form-label">Titel</label>
<input class="form-control" name="title" required>
</div>
<div class="mb-3">
<label class="form-label">Datei</label>
<input type="file" class="form-control" name="file" required>
</div>
<button class="btn btn-light">Speichern</button>
</form>
{% endblock %}