Files
pulse-signage/src/web/views/auth/forgot-password.hbs
T
lzstealth 98f969ca0f
Publish Docker Image / build-and-push-existing-registry (./build/Dockerfile, web, pulse-signage-web) (push) Successful in 1m47s
Publish Docker Image / build-and-push-existing-registry (./build/Dockerfile.player, player, pulse-signage-player) (push) Successful in 31s
Release v2.11.1
2026-09-04 15:43:55 +01:00

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>