9 lines
615 B
HTML
9 lines
615 B
HTML
{{ define "content" }}
|
|
<form method="POST" class="max-w-md mx-auto bg-gray-800 p-6 rounded">
|
|
<input type="hidden" name="csrf_token" value="{{ .CSRFToken }}">
|
|
<input type="text" name="username" placeholder="Username" class="w-full mb-4 p-2 bg-gray-700 rounded" required>
|
|
<input type="password" name="password" placeholder="Password" class="w-full mb-4 p-2 bg-gray-700 rounded" required>
|
|
<input type="text" name="mfa_code" placeholder="MFA Code (if enabled)" class="w-full mb-4 p-2 bg-gray-700 rounded">
|
|
<button type="submit" class="w-full bg-blue-600 p-2 rounded">Login</button>
|
|
</form>
|
|
{{ end }} |