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
|
<?php include_once("./_common.php"); ?> <form name='prod_qa_password_form' id='prod_qa_password_form' method='post' action=''> <input type='hidden' name='qstr' value=''> <input type='hidden' name='idx' value='<?php echo $idx;?>'>
<div class="p10_20"> <h1 class="screen_out">상품문의글 비밀번호확인</h1> <table class="width_full txt14 black_line_t"> <caption class="mt15 mb5 l_height24 txt15 align_l bold">비밀번호확인</caption> <colgroup> <col class="width_30"><col> </colgroup> <tbody> <tr> <th class="p3 gray_line_b2">비밀번호</td> <td class="p3 gray_line_b2"> <input type='password' name='iq_password' class="width_full height26 gray_line"> </td> </tr>
</table> </div> </form>
|