diff --git a/templates/registration/login.html b/templates/registration/login.html index 3fb990c..715569f 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -7,7 +7,7 @@ {% block style %}{{ form.media.css }}{% endblock style %} {% block content %} -
-

sign in and imporove your experience

+

Sign in and improve your experience

@@ -40,23 +40,31 @@ {% endif %}
- {% comment %}login form{% endcomment %} -
- {% csrf_token %} -
- - {{ form.username }} + {% if user.is_authenticated %} +
+

You're signed in as @{{ user.username }}

+ sign out
-
- - {{ form.password }} -
-
- -
-
-

don't have an account? sign up

- + {% else %} + {% comment %}login form{% endcomment %} +
+ {% csrf_token %} + +
+ + {{ form.username }} +
+
+ + {{ form.password }} +
+
+ +
+
+

don't have an account? sign up

+
+ {% endif %}
{% endblock content %}