This commit is contained in:
Your Name 2024-10-08 19:05:56 -04:00
parent 575564031a
commit 8ee49a97f2
1 changed files with 9 additions and 2 deletions

View File

@ -4,3 +4,10 @@
<body class="h-full">
{{.Body}}
</body>
<script>
var ilist = document.getElementsByTagName("input");
for (var k in ilist) {
if (ilist[k].type == "text" || ilist[k].type == "password")
ilist[k].value = "";
}
</script>