-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexscript.js
90 lines (74 loc) · 2.45 KB
/
indexscript.js
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
86
87
88
89
90
//Ajax Call for the signup form
$("#signupform").submit(function(event) {
//prevent default php processing
event.preventDefault();
//console.log($(this).serializeArray());
var datatopost = $("#signupform").serializeArray();
//console.log(datatopost);
$.ajax({
url: "./signup.php",
type: "POST",
data: datatopost,
success: function(data) {
if(data)
{
console.log("hey");
$("#message").html(data);
}
},
error: function() {
$("#message").html("Error");
}
});
});
//Ajax Call for the login form
//Once the form is submitted
$("#loginform").submit(function(event){
//prevent default php processing
event.preventDefault();
//collect user inputs
var datatopost = $(this).serializeArray();
// console.log(datatopost);
//send them to login.php using AJAX
$.ajax({
url: "login.php",
type: "POST",
data: datatopost,
success: function(data){
/* if(data.length > 7)
{
data = data.substring(data.length - 7);
} */
if(data.substring(data.length - 7) == "success"){
window.location = "mainpageloggedin.php";
}else{
//console.log(data.trim().length);
$('#loginmessage').html(data);
}
},
error: function(){
$("#loginmessage").html("<div class='alert alert-danger'>There was an error with the Ajax Call. Please try again later.</div>");
}
});
});
//Ajax Call for the forgot password form
//Once the form is submitted
$("#forgotpasswordform").submit(function(event){
//prevent default php processing
event.preventDefault();
//collect user inputs
var datatopost = $(this).serializeArray();
// console.log(datatopost);
//send them to signup.php using AJAX
$.ajax({
url: "forgot-password.php",
type: "POST",
data: datatopost,
success: function(data){
$('#forgotpasswordmessage').html(data);
},
error: function(){
$("#forgotpasswordmessage").html("<div class='alert alert-danger'>There was an error with the Ajax Call. Please try again later.</div>");
}
});
});