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