57 lines
2.3 KiB
PHP
57 lines
2.3 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
|
|
<div id="mb_login">
|
|
<h1><?php echo $g4['title'] ?></h1>
|
|
|
|
<form name="flogin" action="<?php echo $login_action_url ?>" onsubmit="return flogin_submit(this);" method="post">
|
|
<input type="hidden" name="url" value='<?php echo $login_url ?>'>
|
|
|
|
<fieldset id="mb_login_fs">
|
|
<legend>회원로그인</legend>
|
|
<label for="login_id" class="login_id">회원아이디<strong class="sound_only"> 필수</strong></label>
|
|
<input type="text" name="mb_id" id="login_id" required class="frm_input required" size="20" maxLength="20">
|
|
<label for="login_pw" class="login_pw">패스워드<strong class="sound_only"> 필수</strong></label>
|
|
<input type="password" name="mb_password" id="login_pw" required class="frm_input required" size="20" maxLength="20">
|
|
<input type="submit" value="로그인" class="btn_submit">
|
|
<input type="checkbox" name="auto_login" id="login_auto_login">
|
|
<label for="login_auto_login">자동로그인</label>
|
|
</fieldset>
|
|
|
|
<aside id="mb_login_info">
|
|
<h2>회원로그인 안내</h2>
|
|
<p>
|
|
회원아이디 및 패스워드가 기억 안나실 때는 아이디/패스워드 찾기를 이용하십시오.<br>
|
|
아직 회원이 아니시라면 회원으로 가입 후 이용해 주십시오.
|
|
</p>
|
|
<div>
|
|
<a href="<?php echo G4_BBS_URL ?>/password_lost.php" target="win_password_lost" id="login_password_lost" class="btn02">아이디 패스워드 찾기</a>
|
|
<a href="./register.php" class="btn01">회원 가입</a>
|
|
</div>
|
|
</aside>
|
|
|
|
<div class="btn_confirm">
|
|
<a href="<?php echo G4_URL ?>/">메인으로 돌아가기</a>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
$(function(){
|
|
$("#login_auto_login").click(function(){
|
|
if (this.checked) {
|
|
this.checked = confirm("자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?");
|
|
}
|
|
});
|
|
});
|
|
|
|
function flogin_submit(f)
|
|
{
|
|
return true;
|
|
}
|
|
</script>
|