dealer_qna_write.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <HTML lang="ko">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>UPRO</title>
  7. <meta name="format-detection" content="telephone=no">
  8. <link rel="stylesheet" type="text/css" href="/css/common.css">
  9. <link rel="stylesheet" type="text/css" href="/css/sub.css">
  10. <script type="text/javascript" charset="utf-8" src="/js/jquery-1.11.2.min.js"></script>
  11. <script type="text/javascript" charset="utf-8" src="/js/jquery.jqtransform.js"></script>
  12. <script type="text/javascript" charset="utf-8" src="/js/ui.js"></script>
  13. </head>
  14. <body>
  15. <!-- s : header -->
  16. <? include("../include/inc_header.html"); ?>
  17. <!-- // e : header -->
  18. <section id="wrap">
  19. <section id="visual" class="visual_mypage">
  20. <h2>마이페이지</h2>
  21. <p>쉽고 간편한 내차팔기, 견적산출, 최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
  22. </section>
  23. <section id="content">
  24. <ul class="location">
  25. <li><a href="/" class="home">홈</a></li>
  26. <li><span class="depth1">마이페이지</span>
  27. <ul class="sub_depth">
  28. <li><a href="#">마이페이지</a></li>
  29. <li><a href="#">입찰정보</a></li>
  30. <li><a href="#">차량정보</a></li>
  31. <li><a href="#">문의내역</a></li>
  32. </ul>
  33. </li>
  34. <li><span class="depth2">딜러</span></li>
  35. </ul>
  36. <ul class="tab">
  37. <li><a href="dealer.html">요약보기</a></li>
  38. <li><a href="dealer_manager.html">관리자 관리</a></li>
  39. <li><a href="dealer_tender_list.html">입찰관리</a></li>
  40. <li><a href="dealer_review_list.html">입찰후기</a></li>
  41. <li><a href="dealer_qna_list.html" class="on">문의내역</a></li>
  42. <li><a href="dealer_modify.html">정보수정</a></li>
  43. </ul>
  44. <h3>문의내역</h3>
  45. <table class="tbl_h">
  46. <colgroup>
  47. <col width="18%">
  48. <col width="*">
  49. </colgroup>
  50. <tr>
  51. <th>제목</th>
  52. <td><input type="text" class="inp_txt" style="width:100%;"></td>
  53. </tr>
  54. <tr>
  55. <th>내용</th>
  56. <td><textarea cols="80" rows="8" style="margin:10px 0;"></textarea></td>
  57. </tr>
  58. <tr>
  59. <th>첨부파일</th>
  60. <td>
  61. <div class="filebox">
  62. <label for="file_photo">찾아보기</label>
  63. <input class="upload-name" value="">
  64. <input type="file" id="file_photo" class="upload-hidden">
  65. </div>
  66. </td>
  67. </tr>
  68. </table>
  69. <div class="btn_right">
  70. <a href="#" class="button gray">목록으로</a>
  71. <a href="#" class="button">문의하기</a>
  72. </div>
  73. </section>
  74. </section>
  75. <!-- s : footer -->
  76. <? include("../include/inc_footer.html"); ?>
  77. <!-- // e : footer -->
  78. </body>
  79. </html>