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">
|
2024-09-20 17:57:41 +08:00
|
|
|
<script type="text/javascript" src="../include/jquery-2.1.1.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="../include/json2.js"></script>
|
|
|
|
|
<script type="text/javascript" src="../include/globalapi.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="../data/text.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="js/home.js"></script>
|
2024-09-03 09:34:33 +08:00
|
|
|
<title>Connect Device</title>
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2024-09-20 17:57:41 +08:00
|
|
|
background-color: #EEEEEE;
|
2024-09-03 09:34:33 +08:00
|
|
|
}
|
|
|
|
|
h1 {
|
|
|
|
|
color: #3366ff;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
2024-09-20 17:57:41 +08:00
|
|
|
<body onLoad="OnHomeInit()">
|
|
|
|
|
<h1 >
|
|
|
|
|
<span class="trans" tid='t117'>Connect Device</span>
|
|
|
|
|
</h1>
|
|
|
|
|
<p>
|
|
|
|
|
<span class="trans" tid='t118'>Please set up your printer connection to view the device.</span>
|
|
|
|
|
</p>
|
2024-09-03 09:34:33 +08:00
|
|
|
<img src="setup_connection.gif" alt="Device Connection Image">
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|