45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>您处于离线状态 - You are offline</title>
|
|
<style>
|
|
html {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Microsoft YaHei', 'SimHei', 'Noto Sans CJK SC', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
margin: 2rem;
|
|
}
|
|
|
|
p {
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
padding: 1rem 2rem;
|
|
margin: 3rem auto 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>您处于离线状态 / You are offline</h1>
|
|
<p>此应用程序首次运行需要互联网连接。</p>
|
|
<p>This application requires an Internet connection to run for the first time.</p>
|
|
<p>请点击下方按钮尝试重新加载:</p>
|
|
<p>Press the button below to try reloading:</p>
|
|
<button type="button">重新加载 / Reload</button>
|
|
<script>
|
|
document.querySelector('button').addEventListener('click', () => {
|
|
window.location.reload();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|