stash light
This commit is contained in:
23
templates/admin/document/new.html.twig
Normal file
23
templates/admin/document/new.html.twig
Normal file
@@ -0,0 +1,23 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user