summaryrefslogtreecommitdiff
path: root/tests/templates
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-01-20 23:09:10 -0800
committerTim Graham <timograham@gmail.com>2018-01-21 02:09:10 -0500
commitff05de760cc4ef4c7f188e163c722ec3bc1f0cbf (patch)
treeba133d0ecea7521935c98cf1c058df4e6a9ff233 /tests/templates
parent4b0f39d9fb2033a9597e30ac13af162440b82ebc (diff)
downloaddjango-ff05de760cc4ef4c7f188e163c722ec3bc1f0cbf.tar.gz
Fixed #29038 -- Removed closing slash from HTML void tags.
Diffstat (limited to 'tests/templates')
-rw-r--r--tests/templates/login.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/templates/login.html b/tests/templates/login.html
index d1aa5f6b7c..d9909aea60 100644
--- a/tests/templates/login.html
+++ b/tests/templates/login.html
@@ -11,7 +11,7 @@
<tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>
</table>
-<input type="submit" value="login" />
-<input type="hidden" name="next" value="{{ next }}" />
+<input type="submit" value="login">
+<input type="hidden" name="next" value="{{ next }}">
</form>
{% endblock %}