24 lines
606 B
Twig
24 lines
606 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">
|
|
</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 %}
|