2025-04-08 09:12:14 +00:00
|
|
|
|
2025-12-14 13:40:30 +00:00
|
|
|
<div class="action-card">
|
|
|
|
|
<div class="action-card-header">
|
|
|
|
|
<p class="action-eyebrow">Account recovery</p>
|
|
|
|
|
<h2 class="action-title">Forgot password</h2>
|
|
|
|
|
<p class="action-subtitle">Enter your email address and we'll send you reset instructions if it exists in our records</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="action-card-body">
|
|
|
|
|
<form method="post" action="?page=login&action=forgot" class="action-form" novalidate>
|
2025-04-16 10:11:51 +00:00
|
|
|
<?php include CSRF_TOKEN_INCLUDE; ?>
|
2025-12-14 13:40:30 +00:00
|
|
|
<div class="action-form-group">
|
|
|
|
|
<label for="email" class="action-form-label">Email address</label>
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
<span class="input-group-text"><i class="fas fa-envelope"></i></span>
|
|
|
|
|
<input type="email"
|
|
|
|
|
class="form-control action-form-control"
|
|
|
|
|
id="email"
|
|
|
|
|
name="email"
|
|
|
|
|
placeholder="you@example.com"
|
|
|
|
|
value="<?= htmlspecialchars($_POST['email'] ?? '') ?>"
|
|
|
|
|
required
|
|
|
|
|
autocomplete="email">
|
2025-04-08 09:12:14 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-14 13:40:30 +00:00
|
|
|
|
|
|
|
|
<div class="action-actions">
|
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
|
<i class="fas fa-paper-plane me-2"></i>Send reset instructions
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div class="mt-4 text-center">
|
|
|
|
|
<a href="?page=login" class="text-decoration-none">← Back to login</a>
|
2025-04-08 09:12:14 +00:00
|
|
|
</div>
|
2025-12-14 13:40:30 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-19 19:54:51 +00:00
|
|
|
|