| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>선인중고차중개사이트 관리자</title>
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/admin/css/admin.css">
- <script type="text/javascript" charset="utf-8" src="/admin/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/admin/js/jquery.jqtransform.js"></script>
- <script type="text/javascript" charset="utf-8" src="/admin/js/ui.js"></script>
- <script type="text/javascript">
- var lMenu = 1;
- var mMenu = 1
- </script>
- </head>
- <body>
- <!-- s : header -->
- <? include("../inc/inc_header.html"); ?>
- <!-- // e : header -->
- <section id="contents">
- <h2>딜러 회원관리</h2>
- <h3><em>▶</em> 딜러 회원등록</h3>
- <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>
- <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 colspan="3">
- <span class="select2" style="margin-right:5px;width:12%;">
- <select>
- <option value=""></option>
- <option value=""></option>
- </select>
- </span>
- <input type="text" class="inp_txt" style="width:12%;"> - <input type="text" class="inp_txt" style="width:12%;">
- </td>
- </tr>
- <tr>
- <th>주소</th>
- <td colspan="3">
- <input type="text" class="inp_txt" style="margin-right:5px;width:15%;">
- <a href="#" class="rnd_btn ty3 gray" style="width:80px;">우편번호</a>
- <p><input type="text" class="inp_txt" style="width:85%;"></p>
- <p><input type="text" class="inp_txt" style="width:85%;"></p>
- </td>
- </tr>
- <tr>
- <th>승인상태</th>
- <td colspan="3">
- <div class="radio_chk">
- <span class="check_wrap"><input type="radio" name="radiobutton" id="radio1"><i></i><label for="radio1">승인</label></span>
- <span class="check_wrap"><input type="radio" name="radiobutton" id="radio2"><i></i><label for="radio2">미승인</label></span>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <h3><em>▶</em> 사업자 정보</h3>
- <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="text" 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><input type="text" class="inp_txt" style="width:60%;"></td>
- </tr>
- <tr>
- <th>업태</th>
- <td colspan="3"><input type="text" class="inp_txt" style="width:28%;"></td>
- </tr>
- <tr>
- <th>주소</th>
- <td colspan="3">
- <input type="text" class="inp_txt" style="margin-right:5px;width:15%;">
- <a href="#" class="rnd_btn ty3 gray" style="width:80px;">우편번호</a>
- <p><input type="text" class="inp_txt" style="width:85%;"></p>
- <p><input type="text" class="inp_txt" style="width:85%;"></p>
- </td>
- </tr>
- </table>
- </div>
- <div class="btn_right">
- <a href="#" class="rnd_btn ty2 gray">목록</a>
- <a href="#" class="rnd_btn ty2 black">저장</a>
- </div>
- </section>
- </body>
- </html>
|