Adds configuration options and environment variables to manage box owner policies, including settings for refresh counts and expiry.
46 lines
2.2 KiB
HTML
46 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .PageTitle }}</title>
|
|
{{ template "account_head_assets" . }}
|
|
</head>
|
|
<body class="account-body">
|
|
<div class="app-shell">
|
|
<div class="app-frame">
|
|
<main class="account-window" aria-labelledby="account-login-title">
|
|
<div class="win98-titlebar">
|
|
<div class="win98-titlebar-label">
|
|
<span class="win98-titlebar-icon">W</span>
|
|
<h1 id="account-login-title">WarpBox Account Login</h1>
|
|
</div>
|
|
</div>
|
|
<div class="account-body-content">
|
|
{{ if .Error }}
|
|
<p class="account-error">{{ .Error }}</p>
|
|
{{ end }}
|
|
{{ if .AccountLoginEnabled }}
|
|
<form class="account-form sunken-panel" action="/account/login" method="post">
|
|
<label class="account-form-row">
|
|
<span>Username</span>
|
|
<input name="username" autocomplete="username" required>
|
|
</label>
|
|
<label class="account-form-row">
|
|
<span>Password</span>
|
|
<input name="password" type="password" autocomplete="current-password" required>
|
|
</label>
|
|
<button class="win98-button" type="submit">Login</button>
|
|
</form>
|
|
{{ else }}
|
|
<p class="sunken-panel section-body">Account login is disabled. Set bootstrap admin credentials and restart to enable account access.</p>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
{{ template "account_toast_modal_containers" . }}
|
|
<script src="/static/js/account-ui.js"></script>
|
|
</body>
|
|
</html>
|