| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>UPRO</title>
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/css/common.css">
- <link rel="stylesheet" type="text/css" href="/css/sub.css">
- <script type="text/javascript" charset="utf-8" src="/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/js/ui.js"></script>
- </head>
- <body>
- <!-- s : header -->
- <? include("../include/inc_header.html"); ?>
- <!-- // e : header -->
- <section id="wrap">
- <section id="visual" class="visual_mypage">
- <h2>마이페이지</h2>
- <p>쉽고 간편한 내차팔기, 견적산출, 최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
- </section>
- <section id="content">
- <ul class="location">
- <li><a href="/" class="home">홈</a></li>
- <li><span class="depth1">마이페이지</span>
- <ul class="sub_depth">
- <li><a href="#">마이페이지</a></li>
- <li><a href="#">입찰정보</a></li>
- <li><a href="#">차량정보</a></li>
- <li><a href="#">문의내역</a></li>
- </ul>
- </li>
- <li><span class="depth2">요약보기</span></li>
- </ul>
- <div class="tit_wrap">
- <h3>회원정보</h3>
- <a href="#" class="button">정보수정</a>
- </div>
- <table class="tbl_h">
- <colgroup>
- <col width="16%">
- <col width="34%">
- <col width="16%">
- <col width="*">
- </colgroup>
- <tr>
- <th>회원구분</th>
- <td>개인회원</td>
- <th>추천인</th>
- <td>신성우</td>
- </tr>
- <tr>
- <th>이름</th>
- <td>홍길동</td>
- <th>아이디</th>
- <td>ghdrlfehd</td>
- </tr>
- <tr>
- <th>회원가입일</th>
- <td>2018.10.11</td>
- <th>연락처</th>
- <td>010-1234-5678</td>
- </tr>
- <tr>
- <th>주소</th>
- <td colspan="3">서울 마포구 서교동</td>
- </tr>
- </table>
- <div class="tit_wrap">
- <h3>입찰내역</h3>
- <a href="#" class="button">+더보기</a>
- </div>
- <table class="tbl_v">
- <colgroup>
- <col width="7%">
- <col width="20%">
- <col width="16%">
- <col width="*">
- <col width="15%">
- <col width="15%">
- </colgroup>
- <thead>
- <tr>
- <th>번호</th>
- <th>매입자</th>
- <th>판매금액</th>
- <th>차종</th>
- <th>판매일</th>
- <th>처리상태</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>1</td>
- <td>구은호 부장(A상사)</td>
- <td>2500만원</td>
- <td>링컨MKX</td>
- <td>2018.01.23</td>
- <td><strong class="finish">판매완료</strong></td>
- </tr>
- <tr>
- <td>2</td>
- <td>구은호 부장(A상사)</td>
- <td>2500만원</td>
- <td>BMW120d</td>
- <td>2018.01.23</td>
- <td><strong class="ing">입찰중</strong></td>
- </tr>
- </tbody>
- </table>
- <div class="tit_wrap">
- <h3>문의내역</h3>
- <a href="#" class="button">+더보기</a>
- </div>
- <table class="tbl_v">
- <colgroup>
- <col width="7%">
- <col width="*">
- <col width="15%">
- <col width="15%">
- </colgroup>
- <thead>
- <tr>
- <th>번호</th>
- <th>제목</th>
- <th>작성일</th>
- <th>답변여부</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>1</td>
- <td class="al"><a href="#">문의합니다</a></td>
- <td>2018.01.23</td>
- <td><strong class="finish">답변</strong></td>
- </tr>
- <tr>
- <td>2</td>
- <td class="al"><a href="#">문의합니다</a></td>
- <td>2018.01.23</td>
- <td><strong>미답변</strong></td>
- </tr>
- </tbody>
- </table>
- </section>
- </section>
- <!-- s : footer -->
- <? include("../include/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|