Spaces:
Running
Running
File size: 1,619 Bytes
55deddb b2ed357 7c813da b2ed357 7c813da 55deddb 65d9341 55deddb 65d9341 55deddb 65d9341 55deddb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {% extends "base.html" %}
{% block title %}Reset Password - QuantVAT{% endblock %}
{% block description %}You forgot your password right? Enter your email address below. Password reset link will be sent. Kindly check your spam box.
{% endblock %}
{% block og_title %}Reset Password - QuantVAT{% endblock %}
{% block og_description %}You forgot your password right? Enter your email address below. Password reset link will be sent. Kindly check your spam box.{% endblock %}
{% block keywords %}register, secure access, reset password, crypto dashboard, cryptovat, trading tools{% endblock %}
{% block content %}
<div class="container">
<h1>🔄 Reset Password</h1>
<div class="card">
<p>You forgot your password right? Enter your email address below. Password reset link will be sent. Kindly check your spam box.</p>
</div>
<div class="card">
{% if error %}
<div class="error-message">⚠️ {{ error }}</div>
{% endif %}
{% if success %}
<div class="success-message">✅ {{ success }}</div>
{% endif %}
<form method="POST">
<label>Email Address</label>
<input type="email" name="email" required placeholder="email@example.com" autocomplete="email">
<button type="submit" class="btn btn-green">SEND RESET LINK</button>
</form>
</div>
<div style="text-align:center; margin-top:20px; display:flex; justify-content:center; gap:15px;">
<a href="{{ url_for('auth.login') }}" class="link" style="float:none;">Back to Login</a>
</div>
</div>
{% endblock %} |