Grundgerüst der Weboberfläche erstellt

This commit is contained in:
2023-10-04 18:55:13 +02:00
parent e18fb0d158
commit 32fbd1d28d
2 changed files with 53 additions and 2 deletions

View File

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