Files
web-installer/index.html
hael a91c21ecfd
All checks were successful
continuous-integration/drone/push Build is passing
cache-control
2025-08-07 09:58:59 +00:00

29 lines
591 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Safebox installer</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
iframe {
display: block;
width: 100vw;
height: 100vh;
border: none;
}
</style>
</head>
<body>
<iframe src="scan.html?t=1"></iframe>
</body>
</html>