-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
58 lines (43 loc) · 1.13 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
const express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const app = express();
const port = 3000;
app.use(express.static("./public"));
// create application/json parser
app.use(bodyParser.json());
// create application/x-www-form-urlencoded parser
app.use(bodyParser.urlencoded({ extended: false }));
app.set("views", path.join(__dirname, "views"));
app.set("view engine", "ejs");
app.get("/", (req, res) => {
const sumBeds = 85;
res.render("index", { totalBeds: sumBeds, totalVentilators: 40 });
});
app.get("/add", (req, res) => {
res.render("form");
});
app.post("/add", (req, res) => {
// add to database
console.log(req.body);
res.redirect("/");
});
app.get("/update", (req, res) => {
res.render("update");
});
app.post("/update", (req, res) => {
// add to database
console.log(req.body);
res.redirect("/");
});
app.get("/login", (req, res) => {
res.render("login");
});
app.post("/login", (req, res) => {
// add to database
console.log(req.body);
res.redirect("/");
});
app.listen(port, () => {
console.log(`Listening at http://localhost:${port}`);
});