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