summaryrefslogtreecommitdiff
path: root/templates/login.html
blob: 6c8e1c296713e93e29e5b1879e7de0b86a9bfc19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block content %}
    <h2>Team Owner Login</h2>
    <form method="POST" action="{{ url_for('login') }}">
        <div>
            <label for="username">Username:</label>
            <input type="text" id="username" name="username" required>
        </div>
        <div>
            <label for="password">Password:</label>
            <input type="password" id="password" name="password" required>
        </div>
        <button type="submit">Login</button>
    </form>
    <p>Don't have an account? <a href="{{ url_for('register') }}">Create one here</a>.</p>
{% endblock %}