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

@ -1,6 +1,13 @@
<head>
<link href="style.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body class="h-full">
{{.Body}}
{{.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>