2.0+ public access setup

This commit is contained in:
SowinskiBraeden committed 2026-06-23 21:38:33 -07:00
1 parent 5d88180e02
commit 211ace7b20
45 files changed
+7875 -32

No files matched your search

+22
View File
@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Forgot Password · myboker.org{% endblock %}
{% block content %}
<div class="form-shell narrow">
<form class="panel form-card" method="post">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
<div>
<p class="eyebrow">Account recovery</p>
<h1 style="font-size:28px;margin-bottom:8px;">Forgot password</h1>
<p class="muted-text" style="margin-bottom:8px;">Enter your email and we'll send a reset link if an account exists.</p>
</div>
<label>
<span>Email</span>
<input type="email" name="email" autocomplete="email" required>
</label>
<button class="btn btn--primary" type="submit">Send reset link</button>
<a class="btn btn--ghost" href="{{ url_for('account.login') }}">Back to login</a>
</form>
</div>
{% endblock %}