| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!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" class="login_wrap">
- <div class="login_box">
- <h2>LOG IN</h2>
- <p class="area_inp"><input type="text" 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="radio" name="radiobutton" 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>
- <!-- s : footer -->
- <? include("include/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|