본문 바로가기
C. 웹/실습

[WEB] 홈페이지 만들기 1.로그인 창 만들기

by E-HO 2017. 7. 8.
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>안녕하세요.</title>
  </head>
  <body>
    <form method="POST" action="loginCheck.php">
      <label>ID : <input type="text" name = "loginID" /></label>
      <label>PW : <input type="password" name="loginPW" /></label>
      <input type ="submit"/>
    </form>
    <input type="button" name = "Register" value = "회원가입" onclick = "location.href='http://localhost/join.php'"; />
  </body>
</html>
 
cs

간단한 로그인 창이다.

다음은 회원가입 버튼을 클릭했을 때의 창인 join.php를 보자

반응형