aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/auth/login.html')
-rw-r--r--apioforum/templates/auth/login.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/apioforum/templates/auth/login.html b/apioforum/templates/auth/login.html
index 3e69134..89f490f 100644
--- a/apioforum/templates/auth/login.html
+++ b/apioforum/templates/auth/login.html
@@ -6,12 +6,15 @@
{% block content %}
<p>log in using an existing account here. if you don't already have an account, <a href="{{url_for('auth.register')}}">register</a> first instead.</p>
<form method="post">
- <label for="username">Username</label>
+ <label for="username">username</label>
<input name="username" id="username" required>
<br>
- <label for="password">Password</label>
+ <label for="password">password</label>
<input type="password" name="password" id="password" required>
<br>
+ <input type="checkbox" name="keep_logged_in" id="keep_logged_in">
+ <label for="keep_logged_in">keep me logged in</label>
+ <br>
<input type="submit" value="login">
</form>
{% endblock %}