Files
QIDIStudio/resources/web/device/missing_connection.html

46 lines
1.1 KiB
HTML
Raw Normal View History

2024-09-03 09:34:33 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Device Not Connected</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px 40px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 36px;
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>No printer connected</h1>
<p>Please set up your printer connection to view the device.</p>
</div>
</body>
</html>