login.ejs 1.21 KB
<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="/css/home/login.css" />
    <script src="/js/home/login.js" defer></script>
    <title>로그인</title>
  </head>
  <body>
    <div class="login-page">
      <div class="form">
        <!-- <form class="register-form">
          <input type="text" placeholder="name" />
          <input type="password" placeholder="password" />
          <input type="text" placeholder="email address" />
          <button>create</button>
          <p class="message">Already registered? <a href="#">Sign In</a></p>
        </form> -->
        <form class="login-form">
          <input id="id" type="text" placeholder="아이디" />
          <input id="password" type="password" placeholder="비밀번호" />
          <p id="button">LOGIN</p>
          <p class="message">
            계정이 없으신가요? <a href="/register">회원가입</a>
          </p>
        </form>
      </div>
    </div>
  </body>
</html>

<!-- Copyright (c) 2022 by Aigars Silkalns (https://codepen.io/colorlib/pen/rxddKy) -->