| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <!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/jquery.jqtransform.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>
- <h3>회원정보</h3>
- <table class="tbl_h">
- <colgroup>
- <col width="16%">
- <col width="*">
- </colgroup>
- <tr>
- <th>아이디</th>
- <td><input type="text" class="inp_txt" style="width:330px;"> @
- <span class="select" style="width:200px;">
- <select>
- <option value="">직접입력</option>
- </select>
- </span>
- <input type="submit" class="td_btn ty2" title="아이디 확인" value="확인">
- </td>
- </tr>
- <tr>
- <th>비밀번호</th>
- <td><input type="password" class="inp_txt" style="width:330px;"> <span class="td_txt">8자~15자 영문, 숫자, 특수문자 조합</span></td>
- </tr>
- <tr>
- <th>비밀번호 확인</th>
- <td><input type="password" class="inp_txt" style="width:330px;"> <span class="td_txt">8자~15자 영문, 숫자, 특수문자 조합</span></td>
- </tr>
- <tr>
- <th>이름</th>
- <td><input type="text" class="inp_txt" style="width:330px;"></td>
- </tr>
- <tr>
- <th>휴대번호</th>
- <td><input type="text" class="inp_txt" style="width:330px;"> <span class="td_txt">숫자만 입력</span></td>
- </tr>
- <tr>
- <th>지역</th>
- <td>
- <span class="select" style="width:210px;">
- <select>
- <option value="">지역</option>
- </select>
- </span>
- <span class="select" style="width:210px;">
- <select>
- <option value="">세부지역</option>
- </select>
- </span>
- </td>
- </tr>
- </table>
- <div class="btn_center">
- <a href="#" class="button">확인</a>
- </div>
- </section>
- </section>
- <!-- s : footer -->
- <? include("../include/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|