18 lines
386 B
HTML
18 lines
386 B
HTML
{{define "content"}}
|
|
<h2>Anmeldung</h2>
|
|
|
|
<form>
|
|
<input autocomplete="off" id="login-input" name="login" placeholder="Code" required type="text" />
|
|
|
|
<div>
|
|
<button type="submit" hx-post="/internal-login/" hx-target="#content">
|
|
Intern
|
|
</button>
|
|
|
|
<button type="submit" hx-post="/external-login/" hx-target="#content">
|
|
Gast
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{{end}}
|