join_gate.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
  3. // include $_SERVER['DOCUMENT_ROOT'].'/common/login_sa_chk_m.php';
  4. // include $_SERVER['DOCUMENT_ROOT'].'/common/auto_login_sa_chk_m.php';
  5. $nav_title = "";
  6. // $show_btn_back = true;
  7. $url = $_REQUEST["url"];
  8. if($url == "") $url = "/m/sa/main.php";
  9. ?>
  10. <?php include("include/header.php") ?>
  11. <main class="normal--wrap full--size">
  12. <section class="login--form--wrap">
  13. <div class="login--form--contents">
  14. <div class="login--box--title">
  15. <a href="javascript:;" class="logo">이차조아</a>
  16. </div>
  17. <div class="title--z">
  18. 회원가입
  19. </div>
  20. <div class="gate--wrapper">
  21. <a href="https://e-chajoa.com/m/sa/join02.php">
  22. <span>일반 회원가입</span>
  23. <span>차량을 판매하시는 일반 회원가입입니다.</span>
  24. </a>
  25. <a href="https://e-chajoa.com/m/sa/join.php">
  26. <span>TA 회원가입</span>
  27. <span>관계사 회원가입입니다.</span>
  28. </a>
  29. </div>
  30. </div>
  31. </section>
  32. </main>
  33. <style>
  34. .title--z{
  35. width:100%;
  36. text-align: center;
  37. font-weight: 700;
  38. margin-top:45px;
  39. }
  40. .gate--wrapper{
  41. width:100%;
  42. max-width:360px;
  43. margin:0 auto;
  44. margin-top:35px;
  45. display: flex;
  46. align-items: stretch;
  47. justify-content: center;
  48. }
  49. .gate--wrapper a{
  50. width:50%;
  51. border:1px solid #ddd;
  52. display: flex;
  53. align-items: center;
  54. justify-content: flex-start;
  55. flex-direction: column;
  56. padding:25px;
  57. margin:0 5px;
  58. }
  59. .gate--wrapper a span:nth-of-type(1){
  60. font-size:16px;
  61. font-weight: 700;
  62. }
  63. .gate--wrapper a span:nth-of-type(2){
  64. font-size:12px;
  65. font-weight: 500;
  66. display: flex;
  67. justify-content: center;
  68. text-align: center;
  69. width:100%;
  70. margin-top:15px;
  71. word-break:break-all;
  72. }
  73. </style>
  74. <?php include("include/bottom.php") ?>