본문 바로가기
Security/보안기초

로그인 페이지 제작

by 계영수 2024. 7. 11.
728x90

 

student@testvm:/var/www/html$ sudo nano login.html

 

<html>
        <head>
        </head>

        <body>
                <form method="GET" action="login.php">
                        ID : <input type="text" name="id_box"><br>
                        PW : <input type="password" name="pw_box"><br>
                        <input type="submit" value="LOGIN">
                </form>
        </body>
</html>

 

 

● ID와 PW를 임의로 입력하고 LOGIN  버튼 클릭 (GET method의 이해)

728x90

'Security > 보안기초' 카테고리의 다른 글

로그인 기능 구현하기  (0) 2024.07.11
DataBase 생성  (0) 2024.07.11
서버 구축하기 - Apache, MySQL, PHP 설치  (0) 2024.07.11
ARP Spoofing  (0) 2023.11.17
통합 보안  (0) 2023.11.17