56 lines
2.2 KiB
HTML
56 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ITAM 자산관리 ERP</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css" />
|
|
<link rel="stylesheet" href="/src/styles/common.css" />
|
|
<link rel="stylesheet" href="/src/styles/modal.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script>
|
|
</head>
|
|
<body>
|
|
<div class="app-layout">
|
|
<!-- Single-Line Integrated Header -->
|
|
<header class="main-header">
|
|
<div class="header-container" id="nav-container">
|
|
<div class="brand">
|
|
<h1>HM <span>ITAM</span></h1>
|
|
</div>
|
|
|
|
<!-- Navigation (GNB + LNB in same row) -->
|
|
<nav class="integrated-nav" id="main-nav">
|
|
<!-- JS will render main items and sub items here side-by-side -->
|
|
</nav>
|
|
|
|
<div class="header-actions">
|
|
<button id="btn-download-template" class="btn btn-outline" title="통합 양식 다운로드">
|
|
<i data-lucide="download"></i> 양식
|
|
</button>
|
|
<label for="excel-upload" class="btn btn-outline" title="엑셀 파일 업로드">
|
|
<i data-lucide="upload"></i> 업로드
|
|
</label>
|
|
<input type="file" id="excel-upload" accept=".xlsx, .xls" style="display: none;" />
|
|
<button id="btn-export-excel" class="btn btn-primary" title="일괄 엑셀 저장">
|
|
<i data-lucide="file-spreadsheet"></i> 엑셀저장
|
|
</button>
|
|
<button id="btn-add-asset" class="btn btn-primary hidden">
|
|
<i data-lucide="plus"></i> 자산추가
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content Area -->
|
|
<main class="content-area" id="main-content">
|
|
<!-- Components inject views here -->
|
|
</main>
|
|
</div>
|
|
|
|
<!-- All modals are injected dynamically -->
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|