dealer_view3_form.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
  3. include $_SERVER['DOCUMENT_ROOT'].ADMIN_PATH.'common/auth_chk.php';
  4. $cd_dealer = $_REQUEST["cd_dealer"];
  5. ?>
  6. <? include("../inc/inc_top.php") ?>
  7. <? include("../inc/inc_header.php") ?>
  8. <section id="contents">
  9. <h2>딜러 회원관리</h2>
  10. <? include("../inc/inc_header_dealer.php") ?>
  11. <div class="tbl_wrap">
  12. <table class="tbl_list2">
  13. <colgroup>
  14. <col width="12%">
  15. <col width="32%">
  16. <col width="12%">
  17. <col width="*">
  18. </colgroup>
  19. <tr>
  20. <th>아이디</th>
  21. <td><input type="text" class="inp_txt" style="width:80%;"></td>
  22. <th>비밀번호</th>
  23. <td><input type="password" class="inp_txt" style="width:60%;"></td>
  24. </tr>
  25. <tr>
  26. <th>이름</th>
  27. <td><input type="text" class="inp_txt" style="width:80%;"></td>
  28. <th>핸드폰</th>
  29. <td>
  30. <span class="select2" style="margin-right:5px;width:22%;">
  31. <select>
  32. <option value="">010</option>
  33. <option value="">011</option>
  34. </select>
  35. </span>
  36. <input type="text" class="inp_txt" style="width:22%;"> - <input type="text" class="inp_txt" style="width:22%;">
  37. </td>
  38. </tr>
  39. <tr>
  40. <th>직급</th>
  41. <td><input type="text" class="inp_txt" style="width:80%;"></td>
  42. <th>이메일</th>
  43. <td>
  44. <input type="text" class="inp_txt" style="width:50%;"> @
  45. <span class="select2" style="margin-right:5px;width:35%;">
  46. <select>
  47. <option value=""></option>
  48. </select>
  49. </span>
  50. </td>
  51. </tr>
  52. </table>
  53. </div>
  54. <div class="btn_right">
  55. <a href="dealer_view3.html" class="rnd_btn ty2 gray">목록</a>
  56. <a href="#" class="rnd_btn ty2 black">저장</a>
  57. </div>
  58. </section>
  59. <? include("../inc/inc_footer.php") ?>
  60. <? include("../inc/inc_bottom.php") ?>
  61. <?
  62. mysql_close($connect);
  63. ?>