nomore
This commit is contained in:
parent
575564031a
commit
8ee49a97f2
|
@ -1,6 +1,13 @@
|
||||||
<head>
|
<head>
|
||||||
<link href="style.css" rel="stylesheet" />
|
<link href="style.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body class="h-full">
|
<body class="h-full">
|
||||||
{{.Body}}
|
{{.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>
|
||||||
|
|
Loading…
Reference in New Issue