summaryrefslogtreecommitdiffstats
path: root/frontend/simple/script/script.js
blob: ff9148222126ec76c92c9a7e09ff28d6add3f79c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
function CookieAlertSubmit (form) {
	
	$("#kuki").dialog({
		modal: true,
		buttons: {
			"DA, Nadaljuj s prijavo": function() {
				$(this).dialog( "close" );
				$('#' + form).submit();
			},
			"Ne": function() {
				$(this).dialog( "close" );
			}
		}
	});
}

function CookieAlertFB () {

	$("#kuki").dialog({
		modal: true,
		buttons: {
			"DA, Nadaljuj s prijavo": function() {
				$(this).dialog( "close" );
				document.location.href='../api/fb_login.php';
			},
			"Ne": function() {
				$(this).dialog( "close" );
			}
		}
	});
}

function LostPassword(alert_text) {
	
	var email = document.getElementById('em').value;
	
	if (email === '') {
		alert(alert_text);
	}
	else {

        var lang_param = '';
        var lang_id = $('input[name="lang_id"]').val();
        if(lang_id == '1' || lang_id == '2'){
            lang_param = '&lang_id=' + lang_id;
        }

		document.location.href = '../api/api.php?action=reset_password&email=' + email + lang_param;
	}
}

// function CheckEmailFP() {
//   var Email = document.getElementById('em');
//   console.log(Email.value);
//   if (Email.search('@') == -1 || Email.indexOf('.') == -1)
//     alert ('Prosimo, popravite email');
// }


// Posljemo zahtevo za izbris (iz simple frontenda)
function sendGDPRRequest(){
	
	var form_serialize = $("#gdpr").serializeArray();

    $.ajax({
        url : '../../utils/gdpr_request.php',
        type: "POST",
        data : form_serialize,
        success:function(response){
			$("#gdpr_holder").load('frontend/simple/ajax.php?a=gdpr_request_send', {json: JSON.parse(response)});
        }
    });
}


function switchLoginRegistration(clicked_tab){

    if($(clicked_tab).hasClass('active'))
        return;

    $("#registration_holder").toggle('fast');
    $("#login_holder").toggle('fast');

    $(".tab").toggleClass('active');
}