{% 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 %} | |