-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme.html
More file actions
42 lines (39 loc) · 1.56 KB
/
Copy pathme.html
File metadata and controls
42 lines (39 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>我的 - Boncatta</title>
<link rel="icon" href="data:,">
<link rel="stylesheet" href="/assets/boncatta.css">
</head>
<body class="mobile-app page-me">
<main class="app-screen">
<section class="game-top">
<div>
<span class="game-kicker">Player Core</span>
<h1>我的</h1>
</div>
<button class="mini-button" id="logoutButton" type="button">退出</button>
</section>
<section class="glass-panel profile-card" id="profileCard">
<div class="panel-title"><span id="profileName">未登录</span><small>账号战绩</small></div>
<div class="stats-grid" id="statsGrid"></div>
</section>
<section class="glass-panel update-card">
<div class="panel-title">
<span>应用更新</span>
<button class="mini-button" id="checkUpdate" type="button">检查</button>
</div>
<div class="hint-line" id="appVersionInfo">正在读取版本...</div>
<div class="hint-line" id="updateStatus">可检查并下载新版 APK。</div>
<a class="primary-cta" id="downloadUpdate" href="#" target="_blank" rel="noreferrer" hidden>下载新版 APK</a>
</section>
</main>
<nav class="nav" id="nav" aria-label="应用导航"></nav>
<script src="/assets/baota-config.js"></script>
<script src="/assets/common.js"></script>
<script src="/assets/baota-api.js"></script>
<script src="/assets/baota-mobile.js"></script>
</body>
</html>