{% extends "base.html" %}
{% block content %}
    <section class="panel" style="max-width: 520px; margin: 0 auto;">
        <h2>Login</h2>
        <form method="post" class="stack">
            <label>
                Username
                <input type="text" name="username" required>
            </label>
            <label>
                Password
                <input type="password" name="password" required>
            </label>
            <button type="submit" class="primary">Login</button>
        </form>
    </section>
{% endblock %}