diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2026-04-03 16:02:56 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2026-04-03 16:02:56 -0700 |
| commit | 5249744b01849b7158ff9cf796c550924f452320 (patch) | |
| tree | 1404319acfef55d9a99c56792922515875f9b06e /templates/login.html | |
start er up
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 |
