summaryrefslogtreecommitdiffstats
path: root/authentication/templates
diff options
context:
space:
mode:
Diffstat (limited to 'authentication/templates')
-rw-r--r--authentication/templates/authorize.html5
-rw-r--r--authentication/templates/login.html2
2 files changed, 1 insertions, 6 deletions
diff --git a/authentication/templates/authorize.html b/authentication/templates/authorize.html
deleted file mode 100644
index 1ed6506..0000000
--- a/authentication/templates/authorize.html
+++ /dev/null
@@ -1,5 +0,0 @@
1{% extends "./base.html" %}
2
3{% block content %}
4 <h1>AUTH</h1>
5{% endblock %}
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 %}