| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="utf-8">
- <title>UPRO</title>
- <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/m/css/common.css">
- <link rel="stylesheet" type="text/css" href="/m/css/sub.css">
- <script type="text/javascript" charset="utf-8" src="/m/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/m/js/ui.js"></script>
- </head>
- <body>
- <!-- s : header -->
- <? include("inc/inc_header.html"); ?>
- <!-- // e : header -->
- <!-- s : container -->
- <section id="container" class="login_wrap">
- <div class="login_box">
- <h2>LOG IN</h2>
- <p class="area_inp"><input type="email" class="inp_txt" placeholder="이메일을 입력해주세요"></p>
- <p class="area_inp"><input type="password" class="inp_txt" placeholder="비밀번호(8자이상)"></p>
- <p class="area_link">
- <span class="check_wrap"><input type="checkbox" name="checkbox" id="auto_login"><i></i><label for="auto_login">자동로그인</label></span>
- <span class="link">
- <a href="#">회원가입</a>
- <a href="#">아이디/비밀번호 찾기</a>
- </span>
- </p>
- <p class="area_btn">
- <a href="#" class="button">로그인</a>
- <a href="#" class="button kakao">카카오톡으로 시작</a>
- <a href="#" class="button facebook">페이스북으로 시작</a>
- <a href="#" class="button naver">네이버로 시작</a>
- </p>
- </div>
- </section>
- <!-- // e : container -->
- <!-- s : footer -->
- <? include("inc/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|