summaryrefslogtreecommitdiff
path: root/templates/login.html
blob: 118bf99f3cc716339bedd5e836d39db6cb63d0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block body %}
    <form method="post" action="{{ url_for('check_login') }}">
        <p style="color: red;">Admin access only</p>
        <p>
            <label for="user">Username</label>
            <input id="user" name="user" disabled="disabled" value="admin">
        </p>
        <p>
            <label for="pass">Password</label>
            <input id="pass" name="pass" placeholder="Password">
        </p>
        <p>
            <input type="submit" value="Login">
        </p>
    </form>
{% endblock %}