nomore
This commit is contained in:
parent
b19126e509
commit
9a38077220
|
@ -1,15 +1,17 @@
|
||||||
<head>
|
<head>
|
||||||
<link href="style.css" rel="stylesheet" />
|
<link href="style.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body class="h-full">
|
<body class="h-full" display="none">
|
||||||
{{.Body}}
|
{{.Body}}
|
||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
document.onload = function () {
|
document.onload = function () {
|
||||||
var ilist = document.getElementsByTagName("input");
|
setTimeout(function () {
|
||||||
for (var k in ilist) {
|
var ilist = document.getElementsByTagName("input");
|
||||||
if (ilist[k].type == "text" || ilist[k].type == "password")
|
for (var k in ilist) {
|
||||||
ilist[k].value = "";
|
if (ilist[k].type == "text" || ilist[k].type == "password")
|
||||||
}
|
ilist[k].value = "";
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue