-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
64 lines (56 loc) · 1.4 KB
/
app.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
// jshint esversion:6
const express = require('express');
const request = require('request');
const app=express();
app.use(express.static("public"));
const bodyparser = require('body-parser');
const https = require('https');
let date_ob = new Date();
app.use(bodyparser.urlencoded({extended:true}));
app.listen(process.env.PORT || 3000,function(){
console.log("server is up on port 3000");
});
app.get("/",function(req,res){
res.sendFile(__dirname+"/signup.html");
});
app.post("/",function(req,res){
const Fname =req.body.firstname;
const Sname=req.body.secondname;
const emailA =req.body.email;
// console.log(Fname);
// console.log(Sname);
// console.log(emailA);
// res.sendFile(__dirname+"/success.html");
const data={
members:[{
email_address:emailA,
status:"subscribed",
merge_fields:{
FNAME:Fname,
LNAME:Sname
}
}]
};
const jsondata=JSON.stringify(data);
const url ="********* ";
const options={
method:"Post",
auth: "***********"
};
var request= https.request(url,options,function(response){
response.on("data",function(data){
// console.log(JSON.parse(data));
if (response.statusCode===200){
res.sendFile(__dirname+"/success.html");
}else{
res.sendFile(__dirname+"/failure.html");
}
});
});
request.write(jsondata);
request.end();
});
app.post("/failure",function(req,res)
{
res.redirect("/");
});