sarmentine/templates/auth/reset_password.html
Butter 8d4042e31a
Some checks failed
CI / Check (push) Failing after 20s
CI / Build & Push Docker Image (push) Has been skipped
CI / Deploy to Rocky (push) Has been skipped
added email auth and posting
really coming together now.
2026-05-04 17:20:07 -04:00

27 lines
860 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="site-title">reset password</div>
<div class="site-subtitle">:: fresh start ::</div>
<hr class="divider">
{% if let Some(err) = error %}
<div class="post" style="border-color:#d4879c; margin-bottom:12px;">
<div class="post-body" style="color:#d4879c;">⚠ {{ err }}</div>
</div>
{% endif %}
<div class="post">
<form method="post" action="/auth/reset">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="token" value="{{ token }}">
<div class="form-field">
<label class="form-label">new password</label>
<input class="form-input" type="password" name="password" required minlength="8" autocomplete="new-password">
</div>
<button class="form-submit" type="submit">reset password →</button>
</form>
</div>
{% endblock %}