-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
79 lines (50 loc) · 1.34 KB
/
index.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 app = express();
const hbs = require("hbs");
const path = require("path");
const res = require('express/lib/response');
var bodyParser = require('body-parser');
var jsonParser = bodyParser.json();
app.set('view engine','hbs');
const css_path = path.join(__dirname,'/public');
app.use(express.static(css_path));
hbs.registerPartials(__dirname+'/views', '{{footer}}')
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());
//end
const user = require("./schema")
require("./db")
app.get("/",(req,res)=>{
res.render('index');
})
app.get("/rooms",(req,res)=>{
res.render('rooms');
})
app.get("/contact",(req,res)=>{
res.render('contact');
})
app.get("/login",(req,res)=>{
res.render('login');
})
app.get("/booking",(req,res)=>{
res.render('booking');
})
app.get("/payment",(req,res)=>{
res.render('payment');
})
app.post("/register", async(req,res)=>{
try {
var createddata = new user(req.body);
createddata.save();
console.log("USER REGISTERED");
res.redirect("/rooms");
} catch (error) {
console.log(error);
res.redirect("login");
}
})
app.listen("3000",()=> {
console.log("server connected");
})