TK-FB(공장관리+신고)와 M-Project(부적합관리)를 3개 독립 시스템으로 분리하기 위한 전체 코드 구조 작성. - SSO 인증 서비스 (bcrypt + pbkdf2 이중 해시 지원) - System 1: 공장관리 (TK-FB 기반, 신고 코드 제거) - System 2: 신고 (TK-FB에서 workIssue 코드 추출) - System 3: 부적합관리 (M-Project 기반) - Gateway 포털 (path-based 라우팅) - 통합 docker-compose.yml 및 배포 스크립트 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>공장 정보 | (주)테크니컬코리아</title>
|
|
<link rel="stylesheet" href="/css/main-layout.css">
|
|
<link rel="stylesheet" href="/css/factory.css" />
|
|
<script src="/js/auth-check.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div class="main-layout">
|
|
<div id="navbar-container"></div>
|
|
|
|
<div class="content-wrapper">
|
|
<div id="sidebar-container"></div>
|
|
|
|
<div id="content-container">
|
|
<div class="container">
|
|
<!-- 로딩 상태 -->
|
|
<div id="loading" class="loading">
|
|
공장 정보를 불러오는 중...
|
|
</div>
|
|
|
|
<!-- 실제 컨텐츠 (초기에는 숨김) -->
|
|
<div id="content" style="display: none;">
|
|
<h2 id="factoryName">공장 이름</h2>
|
|
|
|
<div class="info-section">
|
|
<div class="info-label">📍 주소</div>
|
|
<p id="factoryAddress" style="margin: 0;">주소</p>
|
|
</div>
|
|
|
|
<img id="factoryImage" alt="공장 지도" style="max-width: 100%; margin: 20px 0;">
|
|
|
|
<div class="info-section">
|
|
<div class="info-label">📝 설명</div>
|
|
<p id="factoryDescription" style="margin: 0;">설명</p>
|
|
</div>
|
|
|
|
<div style="margin-top: 30px; text-align: center;">
|
|
<button onclick="history.back()" style="padding: 10px 20px;">뒤로가기</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 에러 메시지 (필요시 표시) -->
|
|
<div id="error" class="error-state" style="display: none;">
|
|
공장 정보를 불러올 수 없습니다.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="/js/load-navbar.js"></script>
|
|
<script type="module" src="/js/load-sidebar.js"></script>
|
|
<script type="module" src="/js/factory-view.js"></script>
|
|
</body>
|
|
</html> |