107 lines
3.5 KiB
JavaScript
107 lines
3.5 KiB
JavaScript
function login(){
|
|
var user = document.getElementById("user").value;
|
|
var password = document.getElementById("password").value;
|
|
// var angemeldet_bleiben = document.getElementById("angemeldet_bleiben");
|
|
|
|
// if(angemeldet_bleiben.checked == true){
|
|
// var angemeldet_bleiben = 1;
|
|
// }else{
|
|
// var angemeldet_bleiben = 0;
|
|
// }
|
|
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: '../controller/admin_login.php',
|
|
data: {
|
|
'function': 'login',
|
|
'user': user,
|
|
'password': password
|
|
},
|
|
success: function(result) { //we got the response
|
|
if(result!=''){
|
|
var a = result.split('|***|');
|
|
if(a[1]=="success"){
|
|
document.getElementById("user").value ="";
|
|
document.getElementById("password").value ="";
|
|
$('#msg').show().delay(1000).fadeOut(500);
|
|
$('#msg').html(a[0]);
|
|
$(document).ajaxStop(function(){
|
|
setTimeout(() => { window.location = "index.php"; }, 1000);
|
|
});
|
|
|
|
}else{
|
|
$('#msg').show().delay(2000).fadeOut(500);
|
|
$('#msg').html(a[0]);
|
|
}
|
|
}
|
|
},
|
|
error: function(xhr, status, exception) {
|
|
console.log(xhr);
|
|
}
|
|
});
|
|
}
|
|
|
|
/*
|
|
function passwortvergessen(){
|
|
var email = document.getElementById("mail_pwvergessen").value;
|
|
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: '../controller/admin_login.php',
|
|
data: {
|
|
'function': 'passwortvergessen',
|
|
'email': email
|
|
},
|
|
success: function(result) { //we got the response
|
|
if(result!=''){
|
|
var a = result.split('|***|');
|
|
if(a[1]=="success"){
|
|
document.getElementById("mail_pwvergessen").value ="";
|
|
}
|
|
$('#msg').show().delay(10000).fadeOut(500);
|
|
$('#msg').html(a[0]);
|
|
}
|
|
},
|
|
error: function(xhr, status, exception) {
|
|
console.log(xhr);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
function resetpasswort(){
|
|
var password_new1 = document.getElementById("password_new1").value;
|
|
var password_new2 = document.getElementById("password_new2").value;
|
|
var code = document.getElementById("code").value;
|
|
var vaid = document.getElementById("vaid").value;
|
|
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: '../controller/admin_login.php',
|
|
data: {
|
|
'function': 'resetpasswort',
|
|
'password_new1': password_new1,
|
|
'password_new2': password_new2,
|
|
'code': code,
|
|
'vaid': vaid
|
|
},
|
|
success: function(result) { //we got the response
|
|
if(result!=''){
|
|
var a = result.split('|***|');
|
|
if(a[1]=="success"){
|
|
document.getElementById("password_new1").value ="";
|
|
document.getElementById("password_new2").value ="";
|
|
$(document).ajaxStop(function(){
|
|
setTimeout(() => { window.location = "login.php"; }, 1000);
|
|
});
|
|
}
|
|
$('#msg').show().delay(10000).fadeOut(500);
|
|
$('#msg').html(a[0]);
|
|
}
|
|
},
|
|
error: function(xhr, status, exception) {
|
|
console.log(xhr);
|
|
}
|
|
});
|
|
}
|
|
*/ |