This commit is contained in:
Your Name 2024-10-08 19:10:25 -04:00
parent b19126e509
commit 9a38077220
1 changed files with 8 additions and 6 deletions

View File

@ -1,15 +1,17 @@
<head>
<link href="style.css" rel="stylesheet" />
</head>
<body class="h-full">
<body class="h-full" display="none">
{{.Body}}
</body>
<script>
document.onload = function () {
var ilist = document.getElementsByTagName("input");
for (var k in ilist) {
if (ilist[k].type == "text" || ilist[k].type == "password")
ilist[k].value = "";
}
setTimeout(function () {
var ilist = document.getElementsByTagName("input");
for (var k in ilist) {
if (ilist[k].type == "text" || ilist[k].type == "password")
ilist[k].value = "";
}
}, 1000);
};
</script>