-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.js
More file actions
99 lines (91 loc) · 2.59 KB
/
api.js
File metadata and controls
99 lines (91 loc) · 2.59 KB
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
91
92
93
94
95
96
97
98
99
const username = document.getElementById("username");
const email = document.getElementById("email");
const password = document.getElementById("password");
const fromCity = document.getElementById('from');
const toCity = document.getElementById('toCity');
const departureDate = document.getElementById("departureDate");
// For handling Registration
function handleRegister() {
console.log(
username.value,
email.value,
password.value
);
fetch("https://reach-0hh4.onrender.com/authenticationRoute/register", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
username: username.value,
email: email.value,
password: password.value
})
})
.then((res) => res.json())
.then((data) => {
console.log(data);
if (data.success) {
window.location.href = 'index2.html';
}
})
.catch((err) => console.log(err));
}
// For handling Login....POST Method
function handlerLogin() {
console.log(
email.value,
password.value
);
fetch("https://reach-0hh4.onrender.com/authenticationRoute/login", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
email: email.value,
password: password.value
})
})
.then((res) => res.json())
.then((data) => {
console.log(data);
if (data.success) {
window.location.href = 'index2.html';
}
})
.catch((err) => console.log(err));
}
// For handling Availability
function handleAvailability() {
// Retrieve the <select> elements and input element by their ids
const fromCity = document.getElementById('fromCity');
const toCity = document.getElementById('toCity');
const departureDate = document.getElementById('departureDate');
// Retrieve the selected values
const selectedFromCity = fromCity.value;
const selectedToCity = toCity.value;
const selectedDepartureDate = departureDate.value;
console.log(selectedFromCity, selectedToCity, selectedDepartureDate);
// Send a POST request to the server
fetch("https://reach-0hh4.onrender.com/tripRoute", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
name: selectedFromCity,
time: selectedToCity,
date: selectedDepartureDate
})
})
.then((res) => res.json())
.then((data) => {
console.log(data);
if (data.success) {
// Redirect to index2.html if the request was successful
window.location.href = 'index2.html';
}
})
.catch((err) => console.log(err));
}