28 lines
1.0 KiB
HTML
Raw Normal View History

2022-12-12 14:57:43 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
{{template "head" .}}
<script src="scripts/login.js" type="module"></script>
2022-12-12 14:57:43 -08:00
</head>
<body>
<header>
{{template "header" .}}
</header>
<main class="flex" style="justify-content: center; align-items: center;">
<div class="w3-container w3-card w3-margin w3-padding" style="height: fit-content;">
<h2 class="w3-center">{{.Organization}} Login</h2>
<form>
<label for="username"><b>Username</b></label>
<input class="w3-input w3-border" id="username" name="username" type="text" autocomplete="username">
<label for="password"><b>Password</b></label>
<input class="w3-input w3-border" id="password" name="password" type="password" autocomplete="current-password">
<label for="realm">Realm</label>
<select class="w3-select w3-border" id="realm" name="realm"></select>
<div class="w3-center">
<button class="w3-button w3-margin" id="submit" type="submit">LOGIN</button>
</div>
</form>
</div>
</main>
2022-12-12 14:57:43 -08:00
</body>
</html>