Files
gexp/templates/login.html
T

32 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block title %}تسجيل الدخول - سجل العقارات اللبناني{% endblock %}
{% block navbar %}{% endblock %}
{% block content %}
<div class="login-card">
<h2>🏠 تسجيل الدخول</h2>
{% if error %}
<div class="login-error">{{ error }}</div>
{% endif %}
<form method="post" action="/auth/login">
<div class="form-group">
<label for="username">اسم المستخدم</label>
<input type="text" id="username" name="username" required placeholder="أدخل اسم المستخدم">
</div>
<div class="form-group">
<label for="password">كلمة المرور</label>
<input type="password" id="password" name="password" required placeholder="أدخل كلمة المرور">
</div>
<button type="submit" class="btn btn-primary btn-large" style="width:100%; justify-content:center; margin-top:.5rem;">
دخول
</button>
</form>
</div>
{% endblock %}