68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
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>Admin Center</title>
|
||
<link rel="stylesheet" href="../center-static/center-static.css" />
|
||
</head>
|
||
<body>
|
||
<div class="center-page">
|
||
<header class="page-header">
|
||
<button class="icon-button" type="button" data-action="back" aria-label="Back"><span>‹</span></button>
|
||
<h1 id="pageTitle">Admin Center</h1>
|
||
<button class="language-button" type="button" data-action="language">EN</button>
|
||
</header>
|
||
<main class="content">
|
||
<section class="surface-card hero-card">
|
||
<div class="hero-row">
|
||
<div class="hero-title" id="heroTitle">My available salary</div>
|
||
<button class="hero-link" id="heroLink" type="button">Details</button>
|
||
</div>
|
||
<div class="hero-value" id="heroValue">$0</div>
|
||
</section>
|
||
<section class="summary-grid" id="summaryGrid"></section>
|
||
<div id="sections"></div>
|
||
</main>
|
||
<div class="toast" id="toast" hidden></div>
|
||
</div>
|
||
<script>
|
||
window.CENTER_PAGE = {
|
||
title: "Admin Center",
|
||
identity: "ADMIN",
|
||
heroTitle: "My available salary",
|
||
heroLink: "Available income",
|
||
heroRoute: "/available-income",
|
||
balanceType: "ADMIN_SALARY",
|
||
summaries: [
|
||
{ label: "Role", value: "Admin" },
|
||
{ label: "Scope", value: "BD / Agency" }
|
||
],
|
||
sections: [
|
||
{
|
||
title: "Operations",
|
||
items: [
|
||
{ label: "Item distribution", route: "/item-distribution", icon: "I" },
|
||
{ label: "Admin policy", route: "/admin-policy", icon: "P" }
|
||
]
|
||
},
|
||
{
|
||
title: "Teams",
|
||
items: [
|
||
{ label: "Invite BD Leader", route: "/invite-bd-leader", icon: "+" },
|
||
{ label: "My BD Leader teams", route: "/my-BDLeader-teams", icon: "L" },
|
||
{ label: "Invite BD", route: "/invite-bd", icon: "+" },
|
||
{ label: "My BD teams", route: "/my-BD-teams", icon: "B" },
|
||
{ label: "Invite Agency", route: "/invite-agency", icon: "+" },
|
||
{ label: "My Agency teams", route: "/my-agency-teams", icon: "A" },
|
||
{ label: "Invite Recharge Agency", route: "/invite-recharge-agency", icon: "+" },
|
||
{ label: "My Recharge Agency", route: "/my-recharge-agency", icon: "R" }
|
||
]
|
||
}
|
||
]
|
||
};
|
||
</script>
|
||
<script src="../center-static/center-static.js"></script>
|
||
</body>
|
||
</html>
|