b9ee546bc1
Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>浏览中 - 云端浏览器</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body class="viewer-body">
|
|
<div class="toolbar">
|
|
<button id="btn-back" title="后退" type="button">←</button>
|
|
<button id="btn-forward" title="前进" type="button">→</button>
|
|
<button id="btn-reload" title="刷新" type="button">↻</button>
|
|
<input id="address-bar" type="text" placeholder="输入网址..." autocomplete="off">
|
|
<button id="btn-go" type="button">前往</button>
|
|
<span id="status" class="status">连接中...</span>
|
|
<button id="btn-close" class="btn-danger" type="button">关闭会话</button>
|
|
</div>
|
|
|
|
<div id="viewport-wrap" class="viewport-wrap">
|
|
<canvas id="screen" tabindex="0"></canvas>
|
|
<div id="overlay" class="overlay hidden">
|
|
<p id="overlay-msg">会话已结束</p>
|
|
<a href="/">返回首页</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/static/viewer.js"></script>
|
|
</body>
|
|
</html>
|