21 lines
1.0 KiB
HTML
21 lines
1.0 KiB
HTML
{% extends "public-base.xhtml" %}
|
|
{% from "macros/page-hero.xhtml" import page_hero %}
|
|
{% block content %}
|
|
{{ page_hero("Account", "Reset password", "Set a new password for your existing username. You can return to sign-in after a successful reset.") }}
|
|
<section class="card">
|
|
<form id="reset-password-form" class="auth-form">
|
|
<div class="auth-field">
|
|
<label class="auth-label" for="reset-username">Login (username or email)</label>
|
|
<input id="reset-username" type="text" placeholder="Enter username or email" required="required" autocomplete="username" />
|
|
</div>
|
|
<div class="auth-field">
|
|
<label class="auth-label" for="reset-password">New Password</label>
|
|
<input id="reset-password" type="password" placeholder="Enter new password" required="required" autocomplete="new-password" />
|
|
</div>
|
|
<button type="submit" class="auth-submit">Reset Password</button>
|
|
</form>
|
|
<pre id="reset-output" class="form-output"></pre>
|
|
<div class="auth-links muted"><a href="/login">Back to login</a></div>
|
|
</section>
|
|
{% endblock %}
|