join.html 2.51 KB
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>FishBook : 회원가입</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>
    <div id="header">
        <h1>
            <a href="#" class="h_logo">
                <img src="images/fish-4925732.png" id="h_logo_img" alt="logo">
            </a>
        </h1>
    </div>
    <div id="container">
        <div id="content">
            <form>
                <fieldset class="join_form">
                    <legend class="blind">회원가입</legend>
                    <div class="input_row" id="email_area">
                        <span class="input_box">
                            <label for="email" id="label_email_area"></label>
                            <input type="text" id="email" name="email" class="int" placeholder="이메일" autofocus>
                        </span>
                        <!-- 취소 버튼(쓴 내용 삭제)-->
                    </div>
                    <div class="input_row" id="id_area">
                        <span class="input_box">
                            <label for="id" id="label_id_area"></label>
                            <input type="text" id="id" name="id" class="int" placeholder="아이디">
                        </span>
                        <!-- 취소 버튼(쓴 내용 삭제)-->
                    </div>
                    <div class="input_row" id="pw_area">
                        <span class="input_box">
                            <label for="pw" id="label_pw_area"></label>
                            <input type="text" id="pw" name="pw" class="int" placeholder="비밀번호">
                        </span>
                        <!-- 취소 버튼(쓴 내용 삭제)-->
                    </div>
                    <div class="input_row" id="pw_check_area">
                        <span class="input_box">
                            <label for="pw_check" id="label_pw_check_area"></label>
                            <input type="text" id="pw_check" name="pw_check" class="int" placeholder="비밀번호 확인">
                        </span>
                        <!-- 취소 버튼(쓴 내용 삭제)-->
                    </div>
                    <input type="submit" title="회원가입" id="btn_join" alt="회원가입" value="회원가입">
                </fieldset>
            </form>
        </div>
    </div>
</body>
</html>