Initial release: cloud browser with auth and one-click deploy on port 32450
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user