50 lines
1.5 KiB
Go Template
50 lines
1.5 KiB
Go Template
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
{{template "head" .}}
|
|
</head>
|
|
|
|
<body>
|
|
<div style="height: 100svh;" class="d-flex flex-column">
|
|
{{template "navbar" .Navbar}}
|
|
<div class="overflow-y-scroll flex-grow-1">
|
|
<div class="container py-5">
|
|
{{with .GeneralError}}
|
|
<div class="alert alert-danger" role="alert">
|
|
<p class="mb-0">{{.}}</p>
|
|
</div>
|
|
{{end}}
|
|
<section class="card mb-4">
|
|
<div class="card-body">
|
|
<h2>Submit new password</h2>
|
|
<div class="form-text">You can set a new password by submitting this form.</div>
|
|
{{with .PasswordFromAdmin}}
|
|
<div class="alert alert-warning" role="alert">
|
|
<p class="mb-0"><span class="badge text-bg-danger">!</span> This is recommended, because your password has
|
|
been set by the admin. Change it to
|
|
something the admin doesn't know!</p>
|
|
</div>
|
|
{{end}}
|
|
<form method="post">
|
|
<div class="d-flex flex-column">
|
|
<label>
|
|
New Password
|
|
{{template "input" .Password}}
|
|
</label>
|
|
<label>
|
|
Confirm password
|
|
{{template "input" .ConfirmPassword}}
|
|
</label>
|
|
<button class="btn btn-primary" type="submit" name="intent" value="set_password">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|