-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheee
55 lines (51 loc) · 1.62 KB
/
eee
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
// const sendEmail = async (e) => {
// e.preventDefault();
// try {
// let res = await emailjs.sendForm("service_5ijhdv4","template_f5jb4wq",form.current,"dw0IdgTXXNcUc6QWE"
// );
// if (!res) {
// throw new Error(`something went wrong ${res.status}`);
// }
// setShowOtpCard(false);
// let data = await res.text;
// console.log(data);
// setShowOtpCard(true);
// } catch (err) {
// console.error(err.message);
// setShowOtpCard(false);
// }
// finally {
// let formData = new FormData(form.current);
// // let obj = {};
// for (let [key, value] of formData.entries()) {
// obj[key] = value;
// }
// let formData = new FormData(form.current);
// // let obj = {};
// for (let [key, value] of formData.entries()) {
// obj[key] = value;
// }
// console.log(obj);
// fetch(
// "https://prediction-system-backend-services.onrender.com/store-data",
// {
// method: "POST",
// body: JSON.stringify(obj),
// headers: {
// "Content-Type": "application/json",
// },
// }
// )
// .then(function (response) {
// console.log(response);
// return response.json();
// })
// .then((data) => console.log(data));
// }
// emailjs.sendForm('service_5ijhdv4', 'template_f5jb4wq', form.current, 'dw0IdgTXXNcUc6QWE')
// .then((result) => {
// console.log(result.text);
// }, (error) => {
// console.log(error.text);
// });
// };