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
|
<?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"> <h4 class="mb10 height24 gray_line_b">상품문의</h4> <table class="width_full top_bold_line"> <caption class="mt10 mb10 l_height30 txt17 align_l bold">상품문의글 비밀번호확인 <!--<a><span class="more float_r pl10 box120_30 txt13 gray_line">나의 상담내역</span></a>--></caption> <colgroup> <col class="width80"><col><col class="width140"><col class="width200"> </colgroup>
<tbody> <tr> <td class="p10_20 align_c v_align_t gray_line_b2 bg_gray">비밀번호</td> <td colspan="3" class="p10_20 txt14 gray2 gray_line_b2 bg_gray l_height25"> <input type='password' name='iq_password' value=''> </td> </tr>
</table> </div> </form>
|