-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathadmin_delete.html
More file actions
executable file
·101 lines (66 loc) · 3.26 KB
/
admin_delete.html
File metadata and controls
executable file
·101 lines (66 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="en" />
<meta name="robots" content="noindex,nofollow" />
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/reset.css" />
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/main.css" />
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/2col.css" title="2col" />
<link rel="alternate stylesheet" media="screen,projection" type="text/css" href="css/1col.css" title="1col" />
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/style.css" />
<link rel="stylesheet" media="screen,projection" type="text/css" href="css/mystyle.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/switcher.js"></script>
<script type="text/javascript" src="js/toggle.js"></script>
<script type="text/javascript" src="js/ui.core.js"></script>
<script type="text/javascript" src="js/ui.tabs.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".tabs > ul").tabs();
});
</script>
<title>상품 내용 삭제</title>
</head>
<body>
<div id="main">
<div id="tray" class="box">
<p class="f-left box">
<strong>관리자 페이지</strong>
</p>
<p class="f-right">User: <strong><a href="#">관리자</a></strong> <strong><a href="User.html" id="logout">로그 아웃</a></strong></p>
</div>
<hr class="noscreen" />
<div id="menu" class="box">
<ul class="box">
<li><a href="admin.html"><span>뒤로가기</span></a></li>
</ul>
</div>
<hr class="noscreen" />
<div id="cols" class="box">
<hr class="noscreen" />
<div id="content" class="box">
<h1>상품삭제(상품 코드와 일치하는 상품의 내용을 삭제합니다.)</h1>
<fieldset>
<legend>삭제</legend>
<form action = "/deleteproduct" method = "post">
<table class="nostyle">
<tr>
<td style="width:70px;">상품 코드:</td>
<td><input type="text" size="25" name="pcode" class="input-text" /></td>
</tr>
<tr>
<td colspan="2" class="t-right"><input type="submit" class="input-submit" value="수정" /></td>
</tr>
</table>
</form>
</fieldset>
</div>
<hr class="noscreen" />
<div id="footer" class="box">
<p class="f-left">© 2조 <a href="#">shopping mall</a></p>
</div>
</div>
</body>
</html>