diff options
Diffstat (limited to 'templates/login.html')
| -rw-r--r-- | templates/login.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..f8f19b6 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,16 @@ +{% 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> +{% endblock %}
\ No newline at end of file |
