diff --git a/.idea/workspace.xml b/.idea/workspace.xml index ec1318b..e35e137 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,23 +2,12 @@ - - - - - - - - - - - + + + - - - - + - - + + @@ -40,11 +29,22 @@ + + + + + + + + + + + - - + + @@ -55,64 +55,17 @@ - - + + - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -121,10 +74,45 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -151,15 +139,18 @@ @@ -186,7 +177,17 @@ - + + + + + + + + + + + - {{ form.username.errors }} - + {% if messages %} + {% for message in messages %} +
{{ message }}
+ {% endfor %} + {% endif %} - -
- - - {{ form.password.errors }} -
+
+ {% csrf_token %} - -
+
+ {{ form.username.label_tag }} + {{ form.username }} + {% for error in form.username.errors %} + {{ error }} + {% endfor %} +
+ +
+ {{ form.password.label_tag }} + {{ form.password }} + {% for error in form.password.errors %} + {{ error }} + {% endfor %} +
+ + + + + - - - -{% endblock %} + +