데이터베이스 관련/PHP | HTML2

프로젝트 2 [로그인/HTML]

CE : 하랑 2022. 6. 29. 15:19

 

 

로그인 화면

 

 



 

코드

<HTML log.html>

 

 

See the Pen log2 by 김민승 (@alstmd) on CodePen.

 


 

<html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <style>
 h1{color:#cc5822;}
  </style> </head>
<body>
 <h1>로그인화면</h1>
  <form action="log1.php" method="post">
<div>
  <h1>MARVEL :: Login</h1>
  <hr>
  <div>
      <div>
        <label>User ID</label>
        <input type="text" class="form-control" placeholder="Enter user id" name="id">
      </div>
      <div>
        <label>Password</label>
        <input type="password" class="form-control" placeholder="Enter password" name="pwd">
      </div>
      <br>
      <input type="submit" value="로그인">
      <button><a href="join.html">*회원가입</a></button>
  </div>
  <hr>
</div> </form>
   </body>
</html>