Grundgerüst der Weboberfläche erstellt
This commit is contained in:
12
templates/participant.html
Normal file
12
templates/participant.html
Normal 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 }}
|
Reference in New Issue
Block a user