2026-06-14 21:10:49 +08:00

22 lines
648 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<title>Superadmin Center</title>
<script>
(function () {
var query = window.location.search || '';
var hash = window.location.hash || '';
window.location.replace(
'../superadmin-center/index.html' + query + hash
);
})();
</script>
</head>
<body></body>
</html>