first commit 2
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
function flogin_submit(f) {
|
||||
if (!f.mb_id.value) {
|
||||
alert("아이디를 입력해주세요.");
|
||||
f.mb_id.focus();
|
||||
return false;
|
||||
}
|
||||
if (!f.mb_password.value) {
|
||||
alert("비밀번호를 입력해주세요.");
|
||||
f.mb_password.focus();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// flogin_submit 함수는 member.js 파일에 있으므로 여기서는 자동로그인 확인 스크립트만 남겨둡니다.
|
||||
jQuery(function($){
|
||||
$("#login_auto_login").click(function(){
|
||||
if (this.checked) {
|
||||
this.checked = confirm("자동로그인을 사용하시면 다음부터 회원아이디와 비밀번호를 입력하실 필요가 없습니다.\n\n공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?");
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user