1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00

Fix w3c validator error about self-closing <form>

This commit is contained in:
Anatoli Babenia
2021-03-05 09:54:19 +03:00
committed by GitHub
parent cc88458ce3
commit 42097e2c9d
+1 -1
View File
@@ -96,7 +96,7 @@ def _render_html(query, result, editable, repository_button, topics_list, reques
curl_line = "<span class='pre'>$ curl cheat.sh/</span>"
if query == ':firstpage':
query = ""
form_html = ('<form action="/" method="GET"/>'
form_html = ('<form action="/" method="GET">'
'%s%s'
'<input'
' type="text" value="%s" name="topic"'