-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
51 lines (41 loc) · 1 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
const express=require("express");
const bodyParser=require("body-parser");
const app=express();
app.use(bodyParser.urlencoded({extended:true}));
app.use(express.static("public"));
app.set('view engine','ejs');
var collection=["new1"];
let workItem=[];
app.get("/",function(req,res){
var today=new Date();
var options={
weekday :"long",
day: "numeric",
month :"long"
};
var day= today.toLocaleDateString("hi-IN",options);
res.render("list",{Today:day,collect:collection});
res.send();
});
app.post("/",function (req,res) {
let items=req.body.newItem;
if(req.body.list==="work"){
workItem.push(items);
res.redirect("/work");
}else{
collection.push(items);
res.redirect("/");
}
})
app.get("/work",function (req,res) {
res.render("list",{Today:"work",collect:workItem});
})
// app.post("/work",function (req,res) {
// let items=req.body.newItem;
// workItem.push(items);
// res.redirect("/work");
//
// })
app.listen(3000,function () {
console.log("running");
})