HTML-로그인페이지 작성

임재헌·2023년 3월 24일
0

HTML

목록 보기
12/20
<!DOCTYPE html>   
<html lang="ko"> 
<head>
       <title> 로그인 페이지 </title> 
    </head>
    <body>
        <!-- 참조 사이트: 동행 복권 로그인-->
        <h2> 로그인</h2>
        <img width="250" height="300" src="https://cdn-icons-png.flaticon.com/512/152/152533.png">
        <form>
          <!--사용자가 입력한 정보는 form 단위로 서버로 전송-->
            
          <table border="1">
                <tr>
                    <th>아이디</th>
                    <td>
                        <input type="text">   </td>
                        <td rowspan="2">
                            <input type="submit" value="로그인">
                        </td>
                    </tr>
                    <tr>
                        <th>비밀번호</th>
                        <td> <input type="password"></td>
                    </tr>
                    <tr>
                        <td colspan="3">
                            <input type="checkbox" checked>아이디 저장
                        </td>
                    </tr>
                    <tr>
                        <td colspan="3">
                            <input type="button" value="회원가입">
                            <input type="button" value="아이디/비번찾기">
                        </td>
                    </tr>
            </table>
        </form>
        <!-- 주의사항
         ex) 잘못된 경우
        <form> 
        <form> </form>
        </form>

        잘된경우 <form> </form>-->
    </body>
</html>

0개의 댓글

관련 채용 정보