Files
check-in_system/checkin-system/templates/login.html
T
2026-06-18 20:21:11 +03:00

26 lines
990 B
HTML

{% extends "base.html" %}
{% block content %}
<div style="max-width: 400px; margin: 50px auto;">
<h2>Вход</h2>
<form method="POST">
<div style="margin-bottom: 15px;">
<label style="display: block; margin-bottom: 5px;">Логин:</label>
<input type="text" name="username" required
style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px;">
</div>
<div style="margin-bottom: 15px;">
<label style="display: block; margin-bottom: 5px;">Пароль:</label>
<input type="password" name="password" required
style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px;">
</div>
<button type="submit" class="btn" style="width: 100%;">ВОЙТИ</button>
</form>
<div style="margin-top: 20px; padding: 15px; background: #f8f9fa; border-radius: 5px;">
</div>
</div>
{% endblock %}