-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
79 lines (57 loc) · 1.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const express = require("express");
const bodyParser = require("body-parser");
const JSAlert = require("js-alert");
const app = express();
let emails=[];
let passwords=[];
let firstNames=[];
let lastNames=[];
app.set('view engine','ejs');
app.use(bodyParser.urlencoded({extended:true}));
app.use(express.static("public"));
app.get("/", function (req,res) {
res.sendFile(__dirname + "/home.html");
});
app.get("/login.html",function (req,res) {
res.sendFile(__dirname + "/login.html");
});
app.get("/signup.html",function (req,res) {
res.sendFile(__dirname + "/signup.html");
});
app.post("/signup.html",function (req,res) {
var a = req.body.password;
var b= req.body.password2;
if (a==b) {
emails.push(req.body.email);
passwords.push(req.body.password);
firstNames.push(req.body.fName);
lastNames.push(req.body.lName);
} else {
JSAlert.alert("Please check your input details");
}
res.redirect("/profile.html");
})
app.get("/guide.pdf",function (req,res) {
res.sendFile(__dirname + "/guide.pdf");
});
app.get("/About.html",function (req,res) {
res.sendFile(__dirname + "/About.html");
});
app.get("/Catalog2.html",function (req,res) {
res.sendFile(__dirname + "/Catalog2.html");
});
app.get("/About.html",function (req,res) {
res.sendFile(__dirname + "/About.html");
});
app.get("/Contact_Us.html",function (req,res) {
res.sendFile(__dirname + "/Contact_Us.html");
});
app.get("/assistant.html",function (req,res) {
res.sendFile(__dirname + "/assistant.html");
});
app.get("/profile.html",function (req,res) {
res.render("login", {name: firstNames + lastNames, email: emails,})
});
app.listen(3000,function () {
console.log("server online");
})