flask / templates /forgot_password.html
hashim1's picture
Upload 18 files
5e07f18 verified
raw
history blame
580 Bytes
{% extends "base.html" %}
{% block title %}نسيت كلمة السر{% endblock %}
{% block content %}
<div class="auth-container">
<h2>نسيت كلمة السر</h2>
<form id="forgotPasswordForm" method="POST" action="{{ url_for('forgot_password') }}">
<div class="form-group">
<label for="email">البريد الإلكتروني</label>
<input type="email" id="email" name="email" required>
</div>
<button type="submit" class="submit-btn">إرسال</button>
</form>
</div>
{% endblock %}