| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!doctype html>
- <html lang="ko">
- <?
- include($_SERVER['DOCUMENT_ROOT']."/design/mobile/staff/inc/head.php");
- ?>
- <body>
- <header>
- <div class="header--wrapper">
- <div class="header--contents">
- <?if($HEADER_LOC != 'main' ){?>
- <div class="sub--title btn--wrap">
- <button type="button" class="back--btn"></button>
- <h2>회원 가입</h2>
- </div>
- <?}else{?>
- <h1 class="logo"></h1>
- <?}?>
- <div class="hmb--btn"></div>
- </div>
- </div>
- </header>
- <aside>
- <button class="close--btn"></button>
- <div class="log--msg">
- <?if($LOGIN_AUTH){?>
- <div class="thumb"></div>
- <h2><strong>로그인</strong>후 확인하세요<i class="arrow--right"></i></h2>
- <?}else{?>
- <div class="thumb on"></div>
- <h2><strong>홍길동</strong>님 환영합니다.</h2>
- <?}?>
- </div>
- <div class="gnb--wrapper">
- <a href="sell_car.php" class="<?if($MENU_ACTV == 1){?>actv<?}?>">차량 판매하기</a>
- <a href="#" class="<?if($MENU_ACTV == 2){?>actv<?}?>">입찰대기</a>
- <a href="#" class="<?if($MENU_ACTV == 3){?>actv<?}?>">입찰중</a>
- <a href="#" class="<?if($MENU_ACTV == 4){?>actv<?}?>">거래중</a>
- <a href="#" class="<?if($MENU_ACTV == 5){?>actv<?}?>">판매완료</a>
- <a href="#" class="<?if($MENU_ACTV == 6){?>actv<?}?>">유찰</a>
- <a href="#" class="<?if($MENU_ACTV == 7){?>actv<?}?>">내차 사고이력 조회</a>
- <a href="#" class="<?if($MENU_ACTV == 8){?>actv<?}?>">마이페이지</a>
- <a href="#" class="login--out"><i class="logout--ic"></i>로그아웃</a>
- </div>
- </aside>
|