Spaces:
Sleeping
Sleeping
| {% extends 'base.html' %} | |
| {% block title %}Admin – {{ app_brand }}{% endblock %} | |
| {% block content %} | |
| <div class="page" style="max-width:440px;"> | |
| <div class="card"> | |
| <div class="card-title">🔐 ADMIN LOGIN</div> | |
| <form method="post" action="{{ url_for('admin_login', next=next_url) }}"> | |
| <div class="form-group"> | |
| <label for="password">Password</label> | |
| <input type="password" name="password" id="password" autocomplete="current-password" required autofocus placeholder="Admin password"> | |
| </div> | |
| <button type="submit" class="btn btn-primary" style="width:100%; justify-content:center;">Log in</button> | |
| </form> | |
| <p style="margin-top:1rem; font-size:0.8rem; color:var(--muted);"> | |
| <a href="{{ url_for('dashboard') }}" style="color:var(--orange);">← Back to dashboard</a> | |
| </p> | |
| </div> | |
| </div> | |
| {% endblock %} | |