<br>
уберите в условии if(($userdata['user_hash'] !== $_COOKIE['hash']) or ($userdata['user_id'] !== $_COOKIE['id'])<br> or (($userdata['user_ip'] !== $_SERVER['REMOTE_ADDR']) and ($userdata['user_ip'] !== "0")))
expiryDate:new Date(2018, 0, 1, 9, 30)
function detect_device() {
var w = window,
d = document,
e = d.documentElement,
g = d.getElementsByTagName('body')[0],
x = w.innerWidth || e.clientWidth || g.clientWidth,
y = w.innerHeight|| e.clientHeight|| g.clientHeight;
var isiPhone = navigator.userAgent.toLowerCase().indexOf("iphone");
var isiPad = navigator.userAgent.toLowerCase().indexOf("ipad");
var isiPod = navigator.userAgent.toLowerCase().indexOf("ipod");
var isiAndroid = navigator.userAgent.toLowerCase().indexOf("android");
if(isiPhone > -1 || isiPad > -1 || isiPod > -1 || isiAndroid > -1 && mobile == false){
window.location='mobile.php?page=login';
}
if(x <= 800 && mobile == false){
window.location='mobile.php?page=index';
}
}
detect_device();
window.onresize = function() {
var w = window,
d = document,
e = d.documentElement,
g = d.getElementsByTagName('body')[0],
x = w.innerWidth || e.clientWidth || g.clientWidth,
y = w.innerHeight|| e.clientHeight|| g.clientHeight;
if(x <= 800 && mobile == false){
window.location='mobile.php?page=index';
}
if(x > 801 && mobile == true){
window.location='index.php?page=index';
}
};
$(function() {
if(window.location.hash) {
var target = window.location.hash;
// убираем хеш из строки(отключаем дефолтный "прыжок")
window.location.hash = "";
// аниммируем скролл
$('html, body').animate({
scrollTop: $(target).offset().top
}, 300, function () {
// возыращаем хеш
window.location.hash = target;
});
}
});
$(document).ready(function() {
$('#form_test').submit(function(e){
// устанавливаем false в возвращаемое значение по умолчанию
e.preventDefault();
e.returnValue = false;
// убираем класс ошибок с инпутов
$('input').each(function(){
$(this).removeClass('error_input');
});
// прячем текст ошибок
$('.error').hide();
// получение данных из полей
var name_user = $('#name_user').val();
var email_user = $('#email_user').val();
var password_user = $('#password_user').val();
var password_2_user = $('#password_2_user').val();
// запоминаем переменную с формой
$form = $(this);
$.ajax({
// метод отправки
type: "POST",
// путь до скрипта-обработчика
url: "vd.php",
// какие данные будут переданы
data: {
'name_user': name_user,
'email_user': email_user,
'password_user': password_user,
'password_2_user': password_2_user
},
// тип передачи данных
dataType: "json",
// действие, при ответе с сервера
success: function(data){
// в случае, когда пришло success. Отработало без ошибок
console.log(data);
if(data.result == 'success'){
alert('форма корректно заполнена');
// отключение проверки и submit
$form.off('submit');
$form.submit();
return true;
// в случае ошибок в форме
}else{
// перебираем массив с ошибками
alert(data.text_error.email_user);
}
}
});
});
});