1
1

small (code) style optimization

This commit is contained in:
2021-01-10 22:15:03 +01:00
parent 491dd93f01
commit 8d94d62c85
3 changed files with 6 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ h1, p, a {
}
h1 {
margin-bottom: 12px;
font-size: 1.3rem;
font-weight: bold;
}

View File

@@ -7,5 +7,7 @@
{% endblock %}
{% block content %}
You have been logged out.
<p>logged out, cya &#x1F44B;</p>
{% endblock %}

View File

@@ -5,6 +5,7 @@
{% endblock %}
{% block content %}
<form id="login-form" method="post" action="{% url 'login' %}">
{% csrf_token %}
<label for="id_username">username</label>
@@ -19,4 +20,5 @@
<input id="login-button" type="submit" value="login"/>
<input type="hidden" name="next" value="{{ next }}"/>
</form>
{% endblock %}