11 lines
696 B
Handlebars
11 lines
696 B
Handlebars
<div class="login-logo text-center mb-3"><strong>Pulse</strong> Signage</div>
|
|
<div class="card mx-auto" style="max-width: 26rem;"><div class="card-body p-4">
|
|
<h1 class="h4 mb-3">Reset password</h1>
|
|
{{#if message}}<div class="alert alert-warning">{{message}}</div>{{/if}}
|
|
<form method="post" action="/forgot-password">
|
|
<label for="reset-identity" class="form-label">Username or email</label>
|
|
<input id="reset-identity" name="identity" type="text" class="form-control mb-3" autocomplete="username" required>
|
|
<button type="submit" class="btn btn-primary w-100">Email reset link</button>
|
|
</form>
|
|
<a class="d-block text-center mt-3" href="/login">Back to sign in</a>
|
|
</div></div> |