53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||
|
|
<%@ page import="com.pms.common.utils.*"%>
|
||
|
|
<%@ page import="java.util.*" %>
|
||
|
|
<%@include file= "/init.jsp" %>
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form name="form1" action="" method="post">
|
||
|
|
<section id="commonSection" class="admin_option_min">
|
||
|
|
<div class="admin_title">
|
||
|
|
<h2>재질관리</h2>
|
||
|
|
</div>
|
||
|
|
<div id="adminPopupFormWrap">
|
||
|
|
<table id="adminPopupForm">
|
||
|
|
<colgroup>
|
||
|
|
<col width="37%" />
|
||
|
|
<col width="63%" />
|
||
|
|
</colgroup>
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td><label>재질명</label></td>
|
||
|
|
<td><p></p></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><label>활성화 여부</label></td>
|
||
|
|
<td class="no_bottom_border">
|
||
|
|
<select name="status" id="status">
|
||
|
|
<option>활성화</option>
|
||
|
|
<option>비활성화</option>
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
<div id="adminPopupBtnWrap">
|
||
|
|
<span id="overlapStatus"></span>
|
||
|
|
<input type="button" value="저장" class="btns" >
|
||
|
|
<input type="button" value="중복확인" class="btns">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="btnCenterWrap">
|
||
|
|
<center class="center_btns_wrap">
|
||
|
|
<input type="button" value="닫기" name="" id="btn_close" class="btns" onclick="javascript:self.close();">
|
||
|
|
</center>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|