login.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <HTML lang="ko">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>UPRO</title>
  6. <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
  7. <meta name="format-detection" content="telephone=no">
  8. <link rel="stylesheet" type="text/css" href="/m/css/common.css">
  9. <link rel="stylesheet" type="text/css" href="/m/css/sub.css">
  10. <script type="text/javascript" charset="utf-8" src="/m/js/jquery-1.11.2.min.js"></script>
  11. <script type="text/javascript" charset="utf-8" src="/m/js/ui.js"></script>
  12. </head>
  13. <body>
  14. <!-- s : header -->
  15. <? include("inc/inc_header.html"); ?>
  16. <!-- // e : header -->
  17. <!-- s : container -->
  18. <section id="container" class="login_wrap">
  19. <div class="login_box">
  20. <h2>LOG IN</h2>
  21. <p class="area_inp"><input type="email" class="inp_txt" placeholder="이메일을 입력해주세요"></p>
  22. <p class="area_inp"><input type="password" class="inp_txt" placeholder="비밀번호(8자이상)"></p>
  23. <p class="area_link">
  24. <span class="check_wrap"><input type="checkbox" name="checkbox" id="auto_login"><i></i><label for="auto_login">자동로그인</label></span>
  25. <span class="link">
  26. <a href="#">회원가입</a>
  27. <a href="#">아이디/비밀번호 찾기</a>
  28. </span>
  29. </p>
  30. <p class="area_btn">
  31. <a href="#" class="button">로그인</a>
  32. <a href="#" class="button kakao">카카오톡으로 시작</a>
  33. <a href="#" class="button facebook">페이스북으로 시작</a>
  34. <a href="#" class="button naver">네이버로 시작</a>
  35. </p>
  36. </div>
  37. </section>
  38. <!-- // e : container -->
  39. <!-- s : footer -->
  40. <? include("inc/inc_footer.html"); ?>
  41. <!-- // e : footer -->
  42. </body>
  43. </html>