quantvat / src /templates /auth /reset.html
heisbuba's picture
Update src/templates/auth/reset.html
b2ed357 verified
{% 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 %}