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>
47 lines
1.7 KiB
HTML
47 lines
1.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>공장 정보 등록 | (주)테크니컬코리아</title>
|
|
<link rel="stylesheet" href="/css/main-layout.css">
|
|
<link rel="stylesheet" href="/css/factory.css" />
|
|
<link rel="icon" type="image/png" href="/img/favicon.png">
|
|
<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">
|
|
<h2>공장 정보 등록</h2>
|
|
<form id="uploadForm" enctype="multipart/form-data">
|
|
<label>공장명</label>
|
|
<input type="text" name="factory_name" placeholder="예: 울산 제1공장" required>
|
|
|
|
<label>주소</label>
|
|
<input type="text" name="address" placeholder="예: 울산광역시 남구 산업로 123" required>
|
|
|
|
<label>설명</label>
|
|
<textarea name="description" placeholder="공장에 대한 간단한 설명을 입력하세요." required></textarea>
|
|
|
|
<label>공장 지도 이미지</label>
|
|
<input type="file" name="map_image" accept="image/*" required>
|
|
<div id="file-preview" style="margin: 10px 0; text-align: center;"></div>
|
|
|
|
<button type="submit">등록하기</button>
|
|
</form>
|
|
</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-upload.js"></script>
|
|
</body>
|
|
</html> |