15 lines
618 B
HTML
Raw Normal View History

2023-10-10 18:43:48 +02:00
{{ define "question" }}
<div id="question-{{ .QuestionNumber }}">
<h2>Frage {{ .QuestionNumber }}
<p>{{ .Question }}</p
<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 }}