mirror of
https://github.com/Smile-QWQ/SubTracker.git
synced 2026-05-22 16:57:25 +08:00
- make the forgot-password toggle save independently with clearer disabled-state feedback - add the app logo as the browser tab icon and remove redundant AI settings helper copy - update settings and layout regression checks for the new toggle and favicon behavior
14 lines
373 B
HTML
14 lines
373 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" href="/src/assets/brand-logo.png" />
|
|
<title>SubTracker</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|