반응형
[login.html]
로그인 창에는 php 기능이 필요하지 않을거 같아 html로 제작합니다.
기본적으로 로그인을 위한 form 태그와, 회원가입 페이지로 넘어가는 태그를 넣어봅시다.
login.html
<html><head><meta charset='utf-8'><title>login</title><style></style></head><body><fieldset style="width:250px;"><legend>login</legend><form method='post' action='login_ck.php'><p>id : <input name='id' type='text'> </p><p>pw : <input name='pw' type='password'> </p><input type='submit' value='login'><input type='reset' value='reset'><a href='join.html'>join</a></form></fieldset></body></html>
- id와 pw는 get 방식보다는 post 방식을 추천합니다.
반응형
'My_ > Project' 카테고리의 다른 글
[php 게시판] 회원가입 창 만들기 (0) | 2020.03.26 |
---|---|
[Linux] Ubuntu 18.04.4 ssh 설치 (0) | 2020.03.26 |
[Linux] Ubuntu 18.04.4 mysql 설치 (0) | 2020.03.25 |
[Linux] Ubuntu 18.04.4 php7.2 설치 (0) | 2020.03.22 |
[Linux] Ubuntu 18.04.4 Apache2 설치 (0) | 2020.03.22 |
댓글