78 lines
2.7 KiB
HTML
78 lines
2.7 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="/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>조직현황 메인</h2>
|
|
</div>
|
|
|
|
<div class="header-center">
|
|
<button class="nav-pill active" type="button">조직도</button>
|
|
<span class="nav-pill muted">추가기능 준비중</span>
|
|
<span class="nav-pill muted">추가기능 준비중</span>
|
|
<span class="nav-pill muted">추가기능 준비중</span>
|
|
</div>
|
|
|
|
<div class="header-actions">
|
|
<span id="health-status" class="status-badge">서버 상태 확인 중</span>
|
|
<span id="user-badge" class="user-badge"></span>
|
|
<button id="logout-btn" class="ghost-button" type="button">로그아웃</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="dashboard-main">
|
|
<section class="main-stage">
|
|
<div class="stage-topline">
|
|
<div>
|
|
<p class="stage-label">Main View</p>
|
|
<h3>조직도 메인 화면 샘플</h3>
|
|
</div>
|
|
<a class="stage-link" href="/legacy/organization" target="_blank" rel="noreferrer">새 창으로 열기</a>
|
|
</div>
|
|
|
|
<div class="stage-frame">
|
|
<iframe src="/legacy/organization" title="조직도 메인 화면"></iframe>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</section>
|
|
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
</html>
|