This commit is contained in:
Your Name 2024-10-08 19:13:25 -04:00
parent 5770877a25
commit 691e04fb8c
1 changed files with 8 additions and 10 deletions

View File

@ -5,14 +5,12 @@
{{.Body}} {{.Body}}
</body> </body>
<script> <script>
document.onload = function () { setTimeout(function () {
setTimeout(function () { var ilist = document.getElementsByTagName("input");
var ilist = document.getElementsByTagName("input"); for (var k in ilist) {
for (var k in ilist) { if (ilist[k].type == "text" || ilist[k].type == "password")
if (ilist[k].type == "text" || ilist[k].type == "password") ilist[k].value = "";
ilist[k].value = ""; }
} document.getElementById("body").style.display = "block";
document.getElementById("body").style.display = "block"; }, 2000);
}, 2000);
};
</script> </script>