Files
TK-FB-Project/web-ui/pages/common/factory-upload.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>