diff options
| author | Arne Rief <riearn@proton.me> | 2026-03-27 11:29:40 +0100 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2026-03-27 11:29:40 +0100 |
| commit | e0ca887623682d059c6513a1ce36228d4e8c4f21 (patch) | |
| tree | 87c4304b4c1b7fc28acaa230485f12730b04fc9c /templates/login.html | |
Diffstat (limited to 'templates/login.html')
| -rw-r--r-- | templates/login.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..52d453a --- /dev/null +++ b/templates/login.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} + +{% block title %} + Log In +{% endblock %} + +{% block main %} + <form action="/login" method="post"> + <div class="mb-3"> + <input autocomplete="off" autocomplete="off" autofocus class="form-control" name="username" placeholder="Username" type="text"> + </div> + <div class="mb-3"> + <input class="form-control" autocomplete="off" name="password" placeholder="Password" type="password"> + </div> + <button class="btn btn-success" type="submit">Log In</button> + </form> + <br> + <p>New here? <a href="/register" class="link-success">Register</a> for a free account!</p> +{% endblock %}
\ No newline at end of file |
