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