17 lines
354 B
HTML
17 lines
354 B
HTML
{{ define "content" }}
|
|
<h2>Login</h2>
|
|
|
|
<form>
|
|
<label for="login-input">Code</label>
|
|
<input type="text" name="login" id="login-input" />
|
|
|
|
<button type="submit" hx-post="/external-login/" hx-target="#content">
|
|
Anmelden
|
|
</button>
|
|
|
|
<button type="submit" hx-post="/internal-login/" hx-target="#content">
|
|
Intern
|
|
</button>
|
|
</form>
|
|
{{ end }}
|