Files
backPRO/templates/auth/login.php
2026-02-15 11:37:27 +01:00

27 lines
1.2 KiB
PHP

<div class="d-flex align-items-center justify-content-center" style="min-height: 100vh; background: #f8f9fa;">
<div class="card shadow" style="width: 400px;">
<div class="card-body p-4">
<div class="text-center mb-4">
<h3><i class="bi bi-globe2"></i> BackPRO</h3>
<p class="text-muted">Zarządzanie Zapleczem SEO</p>
</div>
<?php if (!empty($error)): ?>
<div class="alert alert-danger"><?= htmlspecialchars($error) ?></div>
<?php endif; ?>
<form method="post" action="/login">
<div class="mb-3">
<label for="username" class="form-label">Login</label>
<input type="text" class="form-control" id="username" name="username" required autofocus>
</div>
<div class="mb-3">
<label for="password" class="form-label">Hasło</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary w-100">Zaloguj się</button>
</form>
</div>
</div>
</div>