File size: 580 Bytes
5e07f18 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{% 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 %}
|