summaryrefslogtreecommitdiffstats
path: root/authentication/templates/login.html
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@vanderlee.io>2026-07-22 14:51:44 +0200
committerGravatar Tom van der Lee <tom@vanderlee.io>2026-07-22 14:51:44 +0200
commit498c79f434856aa68e9a883247ea69a22256fce6 (patch)
tree4561647b7f8592f783b4dc07143c60730393b4a1 /authentication/templates/login.html
parent7784c60c03ec277b456db6e2709383e302d9382b (diff)
downloadserver-498c79f434856aa68e9a883247ea69a22256fce6.tar.gz
server-498c79f434856aa68e9a883247ea69a22256fce6.tar.bz2
server-498c79f434856aa68e9a883247ea69a22256fce6.zip
Added auth layer
Diffstat (limited to 'authentication/templates/login.html')
-rw-r--r--authentication/templates/login.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/authentication/templates/login.html b/authentication/templates/login.html
index fcba5cd..2db2512 100644
--- a/authentication/templates/login.html
+++ b/authentication/templates/login.html
@@ -3,7 +3,7 @@
3{% block content %} 3{% block content %}
4 <form method="post"> 4 <form method="post">
5 5
6 <input type="email" name="username" {% if form %}value="{{ form.username }}"{% endif %} placeholder="username" /> 6 <input type="text" name="username" {% if form %}value="{{ form.username }}"{% endif %} placeholder="username" />
7 {% if errors and errors.username %} 7 {% if errors and errors.username %}
8 {{ errors.username }} 8 {{ errors.username }}
9 {% endif %} 9 {% endif %}