Files
vstats/web/index.html
zsai001 b41a04fa32 Fix password reset and rebrand xProb to vStats
- Fix config/db paths to be relative to executable directory (not cwd)
- Password reset now works regardless of which directory you run from
- Show config file path in password reset output for verification
- Rename all xProb references to vStats throughout the codebase
- Update localStorage key from xprob_token to vstats_token
2025-12-02 14:20:49 +08:00

17 lines
701 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔥</text></svg>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#131315" />
<meta name="description" content="vStats - Minimal Server Monitoring Dashboard" />
<title>vStats • Server Monitor</title>
<link rel="preconnect" href="https://fonts.cdnfonts.com" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>