| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
- include $_SERVER['DOCUMENT_ROOT'].ADMIN_PATH.'common/auth_chk.php';
- $cd_dealer = $_REQUEST["cd_dealer"];
- ?>
- <? include("../inc/inc_top.php") ?>
- <? include("../inc/inc_header.php") ?>
- <section id="contents">
- <h2>딜러 회원관리</h2>
- <? include("../inc/inc_header_dealer.php") ?>
- <div class="tbl_wrap">
- <table class="tbl_list2">
- <colgroup>
- <col width="12%">
- <col width="32%">
- <col width="12%">
- <col width="*">
- </colgroup>
- <tr>
- <th>아이디</th>
- <td><input type="text" class="inp_txt" style="width:80%;"></td>
- <th>비밀번호</th>
- <td><input type="password" class="inp_txt" style="width:60%;"></td>
- </tr>
- <tr>
- <th>이름</th>
- <td><input type="text" class="inp_txt" style="width:80%;"></td>
- <th>핸드폰</th>
- <td>
- <span class="select2" style="margin-right:5px;width:22%;">
- <select>
- <option value="">010</option>
- <option value="">011</option>
- </select>
- </span>
- <input type="text" class="inp_txt" style="width:22%;"> - <input type="text" class="inp_txt" style="width:22%;">
- </td>
- </tr>
- <tr>
- <th>직급</th>
- <td><input type="text" class="inp_txt" style="width:80%;"></td>
- <th>이메일</th>
- <td>
- <input type="text" class="inp_txt" style="width:50%;"> @
- <span class="select2" style="margin-right:5px;width:35%;">
- <select>
- <option value=""></option>
- </select>
- </span>
- </td>
- </tr>
- </table>
- </div>
- <div class="btn_right">
- <a href="dealer_view3.html" class="rnd_btn ty2 gray">목록</a>
- <a href="#" class="rnd_btn ty2 black">저장</a>
- </div>
- </section>
- <? include("../inc/inc_footer.php") ?>
- <? include("../inc/inc_bottom.php") ?>
- <?
- mysql_close($connect);
- ?>
|