Skip to content

Commit 42097e2

Browse files
authored
Fix w3c validator error about self-closing <form>
1 parent cc88458 commit 42097e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/frontend/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _html_wrapper(data):
9696
curl_line = "<span class='pre'>$ curl cheat.sh/</span>"
9797
if query == ':firstpage':
9898
query = ""
99-
form_html = ('<form action="/" method="GET"/>'
99+
form_html = ('<form action="/" method="GET">'
100100
'%s%s'
101101
'<input'
102102
' type="text" value="%s" name="topic"'

0 commit comments

Comments
 (0)