summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/auth/register.html')
-rw-r--r--apioforum/templates/auth/register.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/apioforum/templates/auth/register.html b/apioforum/templates/auth/register.html
index 716fa1d..7d079c2 100644
--- a/apioforum/templates/auth/register.html
+++ b/apioforum/templates/auth/register.html
@@ -4,11 +4,14 @@
{% endblock %}
{% block content %}
+<p>create a new account here. if you already have an account, <a href="{{url_for('auth.login')}}">login</a> 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="register">
</form>
{% endblock %}