2023-10-28 10:52:06 +02:00
|
|
|
{{define "content"}}
|
2023-10-28 08:01:34 +02:00
|
|
|
<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-16 18:51:52 +02:00
|
|
|
|
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-16 18:51:52 +02:00
|
|
|
|
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-16 18:51:52 +02:00
|
|
|
|
2023-10-28 10:52:06 +02:00
|
|
|
<button type="button" hx-post="/submit-participant/{{.SessionID}}/{{.Login}}/" hx-target="#content">
|
2023-10-16 18:51:52 +02:00
|
|
|
Fertig
|
|
|
|
</button>
|
|
|
|
</form>
|
2023-10-28 10:52:06 +02:00
|
|
|
{{end}}
|