This commit is contained in:
Your Name 2024-10-08 19:11:57 -04:00
parent 9a38077220
commit 5770877a25
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<head>
<link href="style.css" rel="stylesheet" />
</head>
<body class="h-full" display="none">
<body class="h-full" id="body" style="display: none">
{{.Body}}
</body>
<script>
@ -12,6 +12,7 @@
if (ilist[k].type == "text" || ilist[k].type == "password")
ilist[k].value = "";
}
}, 1000);
document.getElementById("body").style.display = "block";
}, 2000);
};
</script>