mirror of
https://github.com/TommyFang2077/dsh-desktop.git
synced 2026-08-17 09:06:36 +08:00
30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>DeepSeek Harness</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="stage">
|
|
<section class="hero">
|
|
<img class="mark" src="icon.png" alt="" />
|
|
<h1>DeepSeek Harness</h1>
|
|
<p id="status">正在启动…</p>
|
|
<div class="ring" id="spinner" aria-hidden="true"></div>
|
|
<section id="update-panel" class="update-panel" hidden>
|
|
<p id="update-notes"></p>
|
|
<div class="update-actions">
|
|
<button type="button" class="pill" id="install-update">下载并安装</button>
|
|
<button type="button" class="pill secondary" id="skip-update">稍后</button>
|
|
</div>
|
|
</section>
|
|
<button type="button" class="pill" id="retry" hidden>重试</button>
|
|
<pre id="detail" hidden></pre>
|
|
</section>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|