Fix JavaScript

This commit is contained in:
Andrew Dinh 2021-06-08 00:11:56 -07:00
parent 5f69ef38dd
commit 19fe768aa1
Signed by: andrewkdinh
GPG Key ID: 2B557D93C6C08B86
1 changed files with 6 additions and 7 deletions

View File

@ -18,8 +18,10 @@
<body> <body>
<p>{{ message }}</p> <p>{{ message }}</p>
{% if attempts_left %} {% if attempts_left %}
<p class="script-only">You have {{ attempts_left }} attempt(s) left</p> <span class="script-only">
<input class="script-only" type="button" value="Go back" onclick="window.history.back()" /> <p >You have {{ attempts_left }} attempt(s) left</p>
<input type="button" value="Go back" onclick="window.history.back()" />
</span>
<noscript> <noscript>
<a href="/">Go back to homepage</a> <a href="/">Go back to homepage</a>
</noscript> </noscript>
@ -34,12 +36,9 @@
</script> </script>
{% endif %} {% endif %}
<script> <script defer>
let elems = document.getElementsByClassName("script-only"); let elems = document.getElementsByClassName("script-only");
let i; elems[0].classList.remove("script-only");
for (i=0; i < elems.length; i++) {
elems[i].classList.remove("script-only");
}
</script> </script>
</body> </body>
</html> </html>