| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>UPRO</title>
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/css/common.css">
- <link rel="stylesheet" type="text/css" href="/css/sub.css">
- <script type="text/javascript" charset="utf-8" src="/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/js/jquery.jqtransform.js"></script>
- <script type="text/javascript" charset="utf-8" src="/js/ui.js"></script>
- </head>
- <body>
- <!-- s : header -->
- <? include("../include/inc_header.html"); ?>
- <!-- // e : header -->
- <section id="wrap">
- <section id="visual" class="visual_mypage">
- <h2>마이페이지</h2>
- <p>쉽고 간편한 내차팔기, 견적산출, 최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
- </section>
- <section id="content">
- <ul class="location">
- <li><a href="/" class="home">홈</a></li>
- <li><span class="depth1">마이페이지</span>
- <ul class="sub_depth">
- <li><a href="#">마이페이지</a></li>
- <li><a href="#">입찰정보</a></li>
- <li><a href="#">차량정보</a></li>
- <li><a href="#">문의내역</a></li>
- </ul>
- </li>
- <li><span class="depth2">딜러</span></li>
- </ul>
- <ul class="tab">
- <li><a href="dealer.html">요약보기</a></li>
- <li><a href="dealer_manager.html">관리자 관리</a></li>
- <li><a href="dealer_tender_list.html">입찰관리</a></li>
- <li><a href="dealer_review_list.html">입찰후기</a></li>
- <li><a href="dealer_qna_list.html" class="on">문의내역</a></li>
- <li><a href="dealer_modify.html">정보수정</a></li>
- </ul>
- <h3>문의내역</h3>
- <table class="tbl_h">
- <colgroup>
- <col width="18%">
- <col width="*">
- </colgroup>
- <tr>
- <th>제목</th>
- <td><input type="text" class="inp_txt" style="width:100%;"></td>
- </tr>
- <tr>
- <th>내용</th>
- <td><textarea cols="80" rows="8" style="margin:10px 0;"></textarea></td>
- </tr>
- <tr>
- <th>첨부파일</th>
- <td>
- <div class="filebox">
- <label for="file_photo">찾아보기</label>
- <input class="upload-name" value="">
- <input type="file" id="file_photo" class="upload-hidden">
- </div>
- </td>
- </tr>
- </table>
- <div class="btn_right">
- <a href="#" class="button gray">목록으로</a>
- <a href="#" class="button">문의하기</a>
- </div>
- </section>
- </section>
- <!-- s : footer -->
- <? include("../include/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|