join.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <? include($_SERVER['DOCUMENT_ROOT']."/design/staff/inc/header.php") ?>
  2. <main class="normal--wrap pb123">
  3. <section class="join--form--wrap">
  4. <h2 class="">이차조아 <span>신차 직원</span> 회원가입</h2>
  5. <p>이용약관과 개인정보처리방침에 대한 안내를 읽고 동의해주세요.</p>
  6. <div class="join--form--contents">
  7. <table>
  8. <tbody>
  9. <tr>
  10. <th>아이디</th>
  11. <td>
  12. <input type="text" class="form-control" id="">
  13. </td>
  14. </tr>
  15. <tr>
  16. <th>패스워드</th>
  17. <td>
  18. <input type="password" class="form-control" id="">
  19. </td>
  20. </tr>
  21. <tr>
  22. <th>이름</th>
  23. <td>
  24. <input type="text" class="form-control" id="">
  25. </td>
  26. </tr>
  27. <tr>
  28. <th>핸드폰</th>
  29. <td>
  30. <div class="d-flex align-items-center">
  31. <select id="inputState" class="form-select" style="max-width:90px;">
  32. <option selected>010</option>
  33. <option>011</option>
  34. </select>
  35. <label for="" class="ml10 mr10">-</label>
  36. <input type="text" class="form-control" id="" style="max-width:105px;">
  37. <label for="" class="ml10 mr10">-</label>
  38. <input type="text" class="form-control" id="" style="max-width:105px;">
  39. </div>
  40. </td>
  41. </tr>
  42. <tr>
  43. <th>이메일</th>
  44. <td>
  45. <div class="d-flex align-items-center">
  46. <input type="text" class="form-control" id="" style="max-width:220px;">
  47. <label for="" class="ml10 mr10">@</label>
  48. <input type="text" class="form-control" id="" style="max-width:220px;">
  49. <select id="inputState" class="form-select ml10" style="max-width:170px;">
  50. <option selected>직접입력</option>
  51. <option></option>
  52. </select>
  53. </div>
  54. </td>
  55. </tr>
  56. <tr>
  57. <th>지점</th>
  58. <td>
  59. <div class="d-flex align-items-center">
  60. <input type="text" class="form-control" id="" style="max-width:220px;">
  61. <select id="inputState" class="form-select ml10" style="max-width:170px;">
  62. <option selected>직접입력</option>
  63. <option></option>
  64. </select>
  65. </div>
  66. </td>
  67. </tr>
  68. </tbody>
  69. </table>
  70. <div class="col-12 d-flex justify-content-center join--btn--wrap mt90">
  71. <button type="button" class="btn btn-secondary" style="width:180px; height:55px;">취소</button>
  72. <button type="submit" class="btn btn-primary ml15" style="width:180px; height:55px;">회원가입<i class="join--ic"></i></button>
  73. </div>
  74. </div>
  75. </section>
  76. </main>
  77. <? include($_SERVER['DOCUMENT_ROOT']."/design/staff/inc/footer.php") ?>