capslock 검사 기능 제거

This commit is contained in:
gnuboard
2013-01-09 15:52:10 +09:00
parent d867e98304
commit e53cc93703

View File

@ -30,8 +30,6 @@ else
$action_url = "{$g4['bbs_path']}/login_check.php";
?>
<script src="<?=$g4[path]?>/js/capslock.js"></script>
<form name="flogin" method="post" action="<?=$action_url?>" onsubmit="return flogin_submit(this);">
<input type="hidden" name="url" value='<?=$login_url?>'>
@ -40,7 +38,7 @@ else
<label for="login_mb_id">아이디</label>
<input type="text" id="login_mb_id" name="mb_id" maxLength="20" size="15" required>
<label for="login_mb_password">패스워드</label>
<input type="password" id="login_mb_password" name="mb_password" maxLength="20" size="15" required onkeypress="check_capslock(event, 'login_mb_password');">
<input type="password" id="login_mb_password" name="mb_password" maxLength="20" size="15" required>
<input type="checkbox" id="login_auto_login" name="auto_login" onclick="if (this.checked) { if (confirm('자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n\공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?')) { this.checked = true; } else { this.checked = false;} }">
<label for="login_auto_login">자동로그인</label>
<input type="submit" value="로그인">