| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
- // include $_SERVER['DOCUMENT_ROOT'].'/common/login_sa_chk_m.php';
- // include $_SERVER['DOCUMENT_ROOT'].'/common/auto_login_sa_chk_m.php';
- $nav_title = "";
- // $show_btn_back = true;
- $url = $_REQUEST["url"];
- if($url == "") $url = "/m/sa/main.php";
- ?>
- <?php include("include/header.php") ?>
- <main class="normal--wrap full--size">
- <section class="login--form--wrap">
- <div class="login--form--contents">
- <div class="login--box--title">
- <a href="javascript:;" class="logo">이차조아</a>
- </div>
- <div class="title--z">
- 회원가입
- </div>
- <div class="gate--wrapper">
- <a href="https://e-chajoa.com/m/sa/join02.php">
- <span>일반 회원가입</span>
- <span>차량을 판매하시는 일반 회원가입입니다.</span>
- </a>
- <a href="https://e-chajoa.com/m/sa/join.php">
- <span>TA 회원가입</span>
- <span>관계사 회원가입입니다.</span>
- </a>
- </div>
- </div>
- </section>
- </main>
- <style>
- .title--z{
- width:100%;
- text-align: center;
- font-weight: 700;
- margin-top:45px;
- }
- .gate--wrapper{
- width:100%;
- max-width:360px;
- margin:0 auto;
- margin-top:35px;
- display: flex;
- align-items: stretch;
- justify-content: center;
- }
- .gate--wrapper a{
- width:50%;
- border:1px solid #ddd;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: column;
- padding:25px;
- margin:0 5px;
- }
- .gate--wrapper a span:nth-of-type(1){
- font-size:16px;
- font-weight: 700;
- }
- .gate--wrapper a span:nth-of-type(2){
- font-size:12px;
- font-weight: 500;
- display: flex;
- justify-content: center;
- text-align: center;
- width:100%;
- margin-top:15px;
- word-break:break-all;
- }
- </style>
- <?php include("include/bottom.php") ?>
|