dealer_manager_register.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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" class="on">관리자 관리</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">문의내역</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="16%">
  48. <col width="*">
  49. </colgroup>
  50. <tr>
  51. <th>아이디</th>
  52. <td><input type="text" class="inp_txt" style="width:330px;"> @
  53. <span class="select" style="width:200px;">
  54. <select>
  55. <option value="">직접입력</option>
  56. </select>
  57. </span>
  58. <input type="submit" class="td_btn ty2" title="아이디 확인" value="확인">
  59. </td>
  60. </tr>
  61. <tr>
  62. <th>비밀번호</th>
  63. <td><input type="password" class="inp_txt" style="width:330px;"> <span class="td_txt">8자~15자 영문, 숫자, 특수문자 조합</span></td>
  64. </tr>
  65. <tr>
  66. <th>이름</th>
  67. <td><input type="text" class="inp_txt" style="width:330px;"></td>
  68. </tr>
  69. <tr>
  70. <th>휴대번호</th>
  71. <td><input type="text" class="inp_txt" style="width:330px;"> <span class="td_txt">숫자만 입력</span></td>
  72. </tr>
  73. <tr>
  74. <th>부서</th>
  75. <td><input type="text" class="inp_txt" style="width:330px;"></td>
  76. </tr>
  77. <tr>
  78. <th>사진(필수입력)</th>
  79. <td>
  80. <div class="filebox">
  81. <label for="fileattach">찾아보기</label>
  82. <input class="upload-name" value="">
  83. <input type="file" id="fileattach" class="upload-hidden">
  84. </div>
  85. </td>
  86. </tr>
  87. </table>
  88. <div class="btn_right">
  89. <a href="#" class="button">관리자 등록</a>
  90. </div>
  91. </section>
  92. </section>
  93. <!-- s : footer -->
  94. <? include("../include/inc_footer.html"); ?>
  95. <!-- // e : footer -->
  96. </body>
  97. </html>