2022-12-12 14:57:43 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2025-02-25 21:35:11 +00:00
|
|
|
{{template "head" .}}
|
2022-12-12 16:27:45 -08:00
|
|
|
<script src="scripts/login.js" type="module"></script>
|
2025-02-27 22:13:37 +00:00
|
|
|
<link rel="modulepreload" href="scripts/utils.js">
|
|
|
|
<link rel="modulepreload" href="scripts/dialog.js">
|
2022-12-12 14:57:43 -08:00
|
|
|
</head>
|
2023-05-03 21:25:55 +00:00
|
|
|
<body>
|
2023-04-25 21:25:03 +00:00
|
|
|
<header>
|
2025-02-25 21:35:11 +00:00
|
|
|
{{template "header" .}}
|
2023-03-25 23:38:15 +00:00
|
|
|
</header>
|
2023-05-03 21:25:55 +00:00
|
|
|
<main class="flex" style="justify-content: center; align-items: center;">
|
|
|
|
<div class="w3-container w3-card w3-margin w3-padding" style="height: fit-content;">
|
2025-03-04 22:40:22 +00:00
|
|
|
<h2 class="w3-center">{{.global.Organization}} Login</h2>
|
2024-07-26 18:34:14 +00:00
|
|
|
<form>
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="username"><b>Username</b></label>
|
2024-07-26 18:34:14 +00:00
|
|
|
<input class="w3-input w3-border" id="username" name="username" type="text" autocomplete="username">
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="password"><b>Password</b></label>
|
2023-09-07 02:44:11 +00:00
|
|
|
<input class="w3-input w3-border" id="password" name="password" type="password" autocomplete="current-password">
|
2023-04-11 21:46:18 +00:00
|
|
|
<label for="realm">Realm</label>
|
2025-03-04 22:40:22 +00:00
|
|
|
{{template "select" .realms}}
|
2023-04-11 21:38:51 +00:00
|
|
|
<div class="w3-center">
|
2025-02-25 21:35:11 +00:00
|
|
|
<button class="w3-button w3-margin" id="submit" type="submit">LOGIN</button>
|
2023-04-03 22:59:36 +00:00
|
|
|
</div>
|
2023-04-11 21:38:51 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-03-25 23:38:15 +00:00
|
|
|
</main>
|
2022-12-12 14:57:43 -08:00
|
|
|
</body>
|
|
|
|
</html>
|