HTML-Seiten modularer aufgebaut und table.html hinzugefügt

This commit is contained in:
2023-10-07 18:32:33 +02:00
parent 8ae3019b9c
commit 15675d5e6c
6 changed files with 115 additions and 72 deletions

View File

@ -1,12 +0,0 @@
{{ define "participant" }}
<div id="participant-{{ . }}">
<label for="participant-first-input-{{ . }}">Vorname</label>
<input type="text" name="participant-first-{{ . }}" id="participant-first-input-{{ . }}" />
<label for="participant-last-input-{{ . }}">Nachname</label>
<input type="text" name="participant-last-{{ . }}" id="participant-last-input-{{ . }}" />
<label for="participant-company-input-{{ . }}">Firma</label>
<input type="text" name="participant-company-{{ . }}" id="participant-company-input-{{ . }}" />
</div>
{{ end }}