최초 커밋
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
$result= '';
|
||||
|
||||
include_once('./_common.php');
|
||||
|
||||
$g5['title'] = "비밀번호 재확인";
|
||||
|
||||
$mb_id = isset($_POST['mb_id']) ? trim($_POST['mb_id']) : '';
|
||||
$mb_password = isset($_POST['mb_password']) ? trim($_POST['mb_password']) : '';
|
||||
//$data["mb_id"] = $_POST['mb_id'];
|
||||
//$data["mb_password"] = $_POST['mb_password'];
|
||||
|
||||
$mb = get_member($mb_id);
|
||||
|
||||
if (!login_password_check($mb, $mb_password, $mb['mb_password'])) {
|
||||
$result= '로그인한 아이디의 비밀번호와 다릅니다.';
|
||||
//$result= 'error';
|
||||
}else{
|
||||
$result= "success";
|
||||
}
|
||||
|
||||
echo json_encode($result,JSON_UNESCAPED_UNICODE);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user