header.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!doctype html>
  2. <html lang="ko">
  3. <?
  4. include($_SERVER['DOCUMENT_ROOT']."/design/mobile/staff/inc/head.php");
  5. ?>
  6. <body>
  7. <header>
  8. <div class="header--wrapper">
  9. <div class="header--contents">
  10. <?if($HEADER_LOC != 'main' ){?>
  11. <div class="sub--title btn--wrap">
  12. <button type="button" class="back--btn"></button>
  13. <h2>회원 가입</h2>
  14. </div>
  15. <?}else{?>
  16. <h1 class="logo"></h1>
  17. <?}?>
  18. <div class="hmb--btn"></div>
  19. </div>
  20. </div>
  21. </header>
  22. <aside>
  23. <button class="close--btn"></button>
  24. <div class="log--msg">
  25. <?if($LOGIN_AUTH){?>
  26. <div class="thumb"></div>
  27. <h2><strong>로그인</strong>후 확인하세요<i class="arrow--right"></i></h2>
  28. <?}else{?>
  29. <div class="thumb on"></div>
  30. <h2><strong>홍길동</strong>님 환영합니다.</h2>
  31. <?}?>
  32. </div>
  33. <div class="gnb--wrapper">
  34. <a href="sell_car.php" class="<?if($MENU_ACTV == 1){?>actv<?}?>">차량 판매하기</a>
  35. <a href="#" class="<?if($MENU_ACTV == 2){?>actv<?}?>">입찰대기</a>
  36. <a href="#" class="<?if($MENU_ACTV == 3){?>actv<?}?>">입찰중</a>
  37. <a href="#" class="<?if($MENU_ACTV == 4){?>actv<?}?>">거래중</a>
  38. <a href="#" class="<?if($MENU_ACTV == 5){?>actv<?}?>">판매완료</a>
  39. <a href="#" class="<?if($MENU_ACTV == 6){?>actv<?}?>">유찰</a>
  40. <a href="#" class="<?if($MENU_ACTV == 7){?>actv<?}?>">내차 사고이력 조회</a>
  41. <a href="#" class="<?if($MENU_ACTV == 8){?>actv<?}?>">마이페이지</a>
  42. <a href="#" class="login--out"><i class="logout--ic"></i>로그아웃</a>
  43. </div>
  44. </aside>