Files
web-installer/index.html
2025-08-07 09:49:15 +00:00

26 lines
415 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.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"></iframe>
</body>
</html>