티스토리 뷰

http://wwuu12366.dothome.co.kr/php/login/login.php

 

로그인

 

wwuu12366.dothome.co.kr

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>로그인</title>
    <?php
        include "../include/style.php";
    ?>
</head>
<body>
    <?php
        include "../include/skip.php";
    ?>

    <?php
        include "../include/header.php";
    ?>


    <main id="contents">
        <h2 class="ir_so">컨텐츠 영역</h2>
            <section class="join-type gray">
                <div class="member-form ">
                    <div class="member01">
                        <h3>로그인</h3>

                    <form action="loginSave.php" name="join" method="post">
                        <fieldset>
                            <legend class="ir_so">회원가입 입력폼</legend>
                            <div class="join-box">
                                <div>
                                    <label for="youEmail">이메일</label>   
                                    <input type="email" id="youEmail" name="youEmail" class="input_write" placeholder="Samlpe@naver.com" autocomplete="off" autofocus required>
                                </div>
                                <div>
                                    <label for="youPass">비밀번호</label>   
                                    <input type="password" id="youPass"  name="youPass" class="input_write" maxlength="20" placeholder="비밀번호를 적어주세요!" autocomplete="off" autofocus required>
                                </div>
                            
                            <button id="joinBtn" class="join-submit" type="submit">로그인</button>
                        </fieldset>
                    </form>
                    
            </section>
        </main>
    <!-- //main -->

    <?php
        include "../include/footer.php";
    ?>
    <!-- //footer -->
    
</body>
</html>

 

댓글
© 2018 webstoryboy