docker-mailserver-passwords/template.html

17 lines
475 B
HTML
Raw Permalink Normal View History

2024-02-19 16:47:27 +00:00
<head>
2024-10-08 23:05:56 +00:00
<link href="style.css" rel="stylesheet" />
2024-02-19 16:47:27 +00:00
</head>
2024-10-08 23:11:57 +00:00
<body class="h-full" id="body" style="display: none">
2024-10-08 23:05:56 +00:00
{{.Body}}
2024-02-19 16:47:27 +00:00
</body>
2024-10-08 23:05:56 +00:00
<script>
2024-10-08 23:13:25 +00:00
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);
2024-10-08 23:05:56 +00:00
</script>