17 lines
529 B
HTML
17 lines
529 B
HTML
{{define "content"}}
|
|
<form>
|
|
<label for="first-{{.Login}}">Vorname</label>
|
|
<input type="text" name="first-{{.Login}}" id="first-{{.Login}}" />
|
|
|
|
<label for="last-{{.Login}}">Nachname</label>
|
|
<input type="text" name="last-{{.Login}}" id="last-{{.Login}}" />
|
|
|
|
<label for="company-{{.Login}}">Firma</label>
|
|
<input type="text" name="company-{{.Login}}" id="company-{{.Login}}" />
|
|
|
|
<button type="button" hx-post="/submit-participant/{{.SessionID}}/{{.Login}}/" hx-target="#content">
|
|
Fertig
|
|
</button>
|
|
</form>
|
|
{{end}}
|