17 lines
475 B
HTML
17 lines
475 B
HTML
<head>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body class="h-full" id="body" style="display: none">
|
|
{{.Body}}
|
|
</body>
|
|
<script>
|
|
setTimeout(function () {
|
|
var ilist = document.getElementsByTagName("input");
|
|
for (var k in ilist) {
|
|
if (ilist[k].type == "text" || ilist[k].type == "password")
|
|
ilist[k].value = "";
|
|
}
|
|
document.getElementById("body").style.display = "block";
|
|
}, 2000);
|
|
</script>
|