87 lines
3.3 KiB
HTML
87 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MH 조직현황 대시보드</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Pretendard:wght@400;600;700;900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/legacy/static/common.css">
|
|
<link rel="stylesheet" href="/styles.css">
|
|
</head>
|
|
<body>
|
|
<section id="login-panel" class="login-screen">
|
|
<div class="login-backdrop">
|
|
<form id="login-form" class="login-card">
|
|
<div class="login-brand">
|
|
<p class="eyebrow">GPD/TDC</p>
|
|
<h1>MH Dash Board</h1>
|
|
</div>
|
|
|
|
<div class="login-form-wrap">
|
|
<label>
|
|
<span>사번</span>
|
|
<input name="username" type="text" placeholder="사번 입력" required>
|
|
</label>
|
|
<label>
|
|
<span>비번</span>
|
|
<input name="password" type="password" placeholder="비밀번호 입력" required>
|
|
</label>
|
|
<button type="submit">로그인</button>
|
|
<p id="login-message" class="helper-text"></p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="dashboard-panel" class="dashboard-shell hidden">
|
|
<header class="dashboard-header">
|
|
<div class="brand-block">
|
|
<p class="eyebrow">MH Dashboard</p>
|
|
<h2 id="current-view-title">조직 현황</h2>
|
|
</div>
|
|
|
|
<div class="header-center">
|
|
<button class="nav-pill" type="button" data-view="ledger">사업관리대장</button>
|
|
<button class="nav-pill" type="button" data-view="project">프로젝트별 분석</button>
|
|
<button class="nav-pill" type="button" data-view="team">팀/개인별 분석</button>
|
|
<button class="nav-pill active" type="button" data-view="organization">조직 현황</button>
|
|
</div>
|
|
|
|
<div class="header-actions">
|
|
<button id="user-badge" class="ghost-button ghost-button-soft user-chip" type="button"></button>
|
|
<button id="logout-btn" class="ghost-button icon-button" type="button" title="로그아웃" aria-label="로그아웃">
|
|
<svg viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M15 3h-4a2 2 0 0 0-2 2v3" />
|
|
<path d="M10 17v2a2 2 0 0 0 2 2h3" />
|
|
<path d="M21 12H9" />
|
|
<path d="m16 7 5 5-5 5" />
|
|
<path d="M3 5h8v14H3z" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="dashboard-main">
|
|
<section class="main-stage" data-stage="ledger" hidden>
|
|
<div class="stage-empty"></div>
|
|
</section>
|
|
<section class="main-stage" data-stage="project" hidden>
|
|
<div class="stage-empty"></div>
|
|
</section>
|
|
<section class="main-stage" data-stage="team" hidden>
|
|
<div class="stage-empty"></div>
|
|
</section>
|
|
<section class="main-stage" data-stage="organization">
|
|
<div class="stage-frame">
|
|
<iframe id="organization-frame" src="/legacy/organization?v=20260325-2" data-src="/legacy/organization?v=20260325-2" title="조직도 메인 화면"></iframe>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</section>
|
|
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
</html>
|