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.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/apioforum/templates/auth/login.html b/apioforum/templates/auth/login.html
index c0a2eed..3e69134 100644
--- a/apioforum/templates/auth/login.html
+++ b/apioforum/templates/auth/login.html
@@ -4,11 +4,14 @@
{% endblock %}
{% 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>
<input name="username" id="username" required>
+ <br>
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
- <input type="submit" value="yes">
+ <br>
+ <input type="submit" value="login">
</form>
{% endblock %}