<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>连接 Wi-Fi</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
text-align: center;
padding: 40px 20px;
}
h1 { font-size: 22px; }
p { color: #555; margin-top: 20px; }
</style>
</head>
<body>
<h1>正在连接 Wi-Fi</h1>
<p>请允许安装 Wi-Fi 配置文件以自动连接 <strong>ITest</strong></p>
<script>
// 延迟自动跳转下载配置文件
setTimeout(() => {
window.location.href = "/wifi.mobileconfig";
}, 500);
</script>
</body>
</html>