index.ejs 495 Bytes
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= title %></title>
</head>
<body>
  <h1>로그인하기</h1>
  <form method="POST" action="/">
    <label for="userId">아이디</label>
    <input type="text" id="userId" name="userId"><br>
    <label for="password">비밀번호</label>
    <input type="password" id="password" name="password"><br>
    <button>로그인</button>
  </form>
</body>
</html>