17 lines
529 B
HTML
Raw Normal View History

2023-10-28 10:52:06 +02:00
{{define "content"}}
<form>
2023-10-28 10:52:06 +02:00
<label for="first-{{.Login}}">Vorname</label>
<input type="text" name="first-{{.Login}}" id="first-{{.Login}}" />
2023-10-28 10:52:06 +02:00
<label for="last-{{.Login}}">Nachname</label>
<input type="text" name="last-{{.Login}}" id="last-{{.Login}}" />
2023-10-28 10:52:06 +02:00
<label for="company-{{.Login}}">Firma</label>
<input type="text" name="company-{{.Login}}" id="company-{{.Login}}" />
2023-10-28 10:52:06 +02:00
<button type="button" hx-post="/submit-participant/{{.SessionID}}/{{.Login}}/" hx-target="#content">
Fertig
</button>
</form>
2023-10-28 10:52:06 +02:00
{{end}}