본문 바로가기

코딩/HTML&CSS

HTML, 과제2

 

 

문제
- 닷홈에 아래 두 페이지를 연결하기

로그인 페이지
login.html

회원가입 페이지
regist.html


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>로그인</title>
</head>
<body>
    <form action="./index.html" name="index" method="post">
    <h1>로그인</h1>
    <p><input type="text" maxlength="15" placeholder="아이디를 입력하세요" name="id" id="id" ></p>
    <p><input type="password" maxlength="15" placeholder="비밀번호를 입력하세요" name="pw" id="pw" ></p>
    <p><input type="checkbox" name="login" value="로그인 상태 유지" id="login">로그인 상태 유지</p>
    <p><input type="submit" value="로그인"></p>
    </form>
</body>
</html>

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>회원가입</title>
    <script>
        function goClick(){  
            alert('회원가입 완료!!');
            location.href = './index.html'
        }
    </script>
</head>
<body>
    <form action="./login.html" id="member" name="member" method="post">
        <div class="member">
            <h1>회원가입</h1>
            <p>아이디: <input type="text" maxlength="12" placeholder="아이디를 입력하세요" name="userid" id="userid">
            *4~12글자까지만 입력하세요</p>
            <p>비밀번호: <input type="password" maxlength="15" placeholder="비밀번호를 입력하세요" name="userpw" id="userpw"> *4~12글자까지만 입력하세요</p>
            <p>비밀번호 확인: <input type="password" maxlength="15" placeholder="비밀번호를 입력하세요" name="userpwcheck" id="userpwcheck"> *4~12글자까지만 입력하세요</p>
            <p>이름: <input type="text" maxlength="15" placeholder="이름을 입력하세요" name="username" id="username"></p>
            <p>생년월일: <input type="date" name="userdate" id="birthdate"></p>
            <p>이메일: <input type="email" placeholder="이메일을 입력하세요" name="email" id="email"></p>
            <p>주소: <input type="text" placeholder="우편번호"> <button type="button">주소검색</button></p>
            <p><input type="text" placeholder="기본주소"> <input type="text" placeholder="상세주소"></p>
            <p>전화번호: <select>
                <option value="02"> 02 </option>
                <option value="031"> 031 </option>
                <option value="032"> 032 </option>
                <option value="033"> 033 </option>
                <option value="041"> 041 </option>
                <option value="042"> 042 </option>
                <option value="043"> 043 </option>
                <option value="044"> 044 </option>
                <option value="051"> 051 </option>          
                <option value="052"> 052 </option>
                <option value="053"> 053 </option>
                <option value="054"> 054 </option>
                <option value="055"> 055 </option>
                <option value="061"> 061 </option>
                <option value="062"> 062 </option>
                <option value="063"> 063 </option>
                <option value="064"> 064 </option>
            </select>-<input type="tel" name="hp1" id="hp1" style="width: 50px;" maxlength="4">-<input type="tel" name="hp2" id="hp2" style="width: 50px;" maxlength="4"></p>
            <p><input type="checkbox" name="agree" value="약관 동의" id="agree">약관 동의</p>
            <p><input type="reset" value="취소"> <input type="button" onclick="location.href='./index.html'" value="이전으로"> <input type="submit" value="회원가입" id="join" onclick="goClick()"></p>
        </div>
    </form>
</body>
</html>

 

로그인 페이지

 

 

회원가입 페이지

http://zmwaexp.dothome.co.kr/

 

'코딩 > HTML&CSS' 카테고리의 다른 글

CSS, 과제1  (0) 2024.04.08
CSS, 1일차  (0) 2024.04.08
HTML, 3일차  (0) 2024.04.05
HTML, 과제1  (0) 2024.04.05
HTML, 1일차  (0) 2024.04.03