| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <? include($_SERVER['DOCUMENT_ROOT']."/design/staff/inc/header.php") ?>
- <main class="normal--wrap pb123">
- <section class="join--form--wrap">
- <h2 class="">이차조아 <span>신차 직원</span> 회원가입</h2>
- <p>이용약관과 개인정보처리방침에 대한 안내를 읽고 동의해주세요.</p>
- <div class="join--form--contents">
- <table>
- <tbody>
- <tr>
- <th>아이디</th>
- <td>
- <input type="text" class="form-control" id="">
- </td>
- </tr>
- <tr>
- <th>패스워드</th>
- <td>
- <input type="password" class="form-control" id="">
- </td>
- </tr>
- <tr>
- <th>이름</th>
- <td>
- <input type="text" class="form-control" id="">
- </td>
- </tr>
- <tr>
- <th>핸드폰</th>
- <td>
- <div class="d-flex align-items-center">
- <select id="inputState" class="form-select" style="max-width:90px;">
- <option selected>010</option>
- <option>011</option>
- </select>
- <label for="" class="ml10 mr10">-</label>
- <input type="text" class="form-control" id="" style="max-width:105px;">
- <label for="" class="ml10 mr10">-</label>
- <input type="text" class="form-control" id="" style="max-width:105px;">
- </div>
- </td>
- </tr>
- <tr>
- <th>이메일</th>
- <td>
- <div class="d-flex align-items-center">
- <input type="text" class="form-control" id="" style="max-width:220px;">
- <label for="" class="ml10 mr10">@</label>
- <input type="text" class="form-control" id="" style="max-width:220px;">
- <select id="inputState" class="form-select ml10" style="max-width:170px;">
- <option selected>직접입력</option>
- <option></option>
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <th>지점</th>
- <td>
- <div class="d-flex align-items-center">
- <input type="text" class="form-control" id="" style="max-width:220px;">
- <select id="inputState" class="form-select ml10" style="max-width:170px;">
- <option selected>직접입력</option>
- <option></option>
- </select>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="col-12 d-flex justify-content-center join--btn--wrap mt90">
- <button type="button" class="btn btn-secondary" style="width:180px; height:55px;">취소</button>
- <button type="submit" class="btn btn-primary ml15" style="width:180px; height:55px;">회원가입<i class="join--ic"></i></button>
- </div>
- </div>
- </section>
- </main>
- <? include($_SERVER['DOCUMENT_ROOT']."/design/staff/inc/footer.php") ?>
|