podterminal/web/responses.go

19 lines
253 B
Go
Raw Normal View History

2024-02-05 09:45:28 +01:00
package web
var clientReloadContent = `
<!DOCTYPE html>
<html>
<head>
<title> Reloading </title>
</head>
<body>
reloading
</body>
<script>
setTimeout(() => {
document.location.reload();
}, 3000);
</script>
</html>
`