login.html 1.64 KB
<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8">
    <title>로그인</title>
    <style>
      #container {
        width:600px;
        margin:10px auto;
      }
    </style>
    <link rel="stylesheet" href="http://localhost:3000/register.css">
  </head>
  <body> 
    <div id="container">
      <h1>'프로그램명'을 방문해주셔서 감사합니다.</h1>
      <form action="/login" method="post">
        <fieldset>
          <legend>로그인</legend>    
          <ul>
            <li>
              <label for="umail">아이디(이메일)</label>
              <input type="email" id="umail" required> 
            </li>
            <li>
              <label for="pwd">비밀번호</label>
              <input type="password" id="pwd" placeholder="문자와 숫자, 특수 기호 포함" required> 
            </li>
          </ul>      
        </fieldset>

        <div id="buttons">
          <input type="submit" value="로그인">
          <input type="reset" value="취소" onclick="movepage3()"/>
        <script type="text/javascript">
          function movepage3() {
            location.href = "/"
          }
          </script>
        </div>
      </form>
      <br>
      <br>
      <br>
      <!-- 공간확보 -->

      <footer>
        <div>
          <p><b>developed by 강희주, 진재영, 김재욱</b></p>
          <address>Contact for more information. 010-2400-6771</address>
          <img style="width: 30%; height: 30%; float: right;" src="https://blog.kakaocdn.net/dn/bjsDsi/btqxXJM3JKe/WAK7xHbOm7kxyVqRIvoOaK/img.jpg" alt="경희대 마크">
        </div>
      </footer>

    </div>           
  </body>
</html>