-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
88 lines (80 loc) · 2.08 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
80
81
82
83
84
85
86
87
88
//jshint esversion:6
const express=require("express");
const ejs=require("ejs");
const bodyparser=require("body-parser");
const mongo=require("mongoose");
const encryption=require("mongoose-encryption");
//connect to mongo db data base
mongo.connect("mongodb://localhost:27017/userDB");
//creating a schema for db
const userSchema=new mongo.Schema({
name:String,
email:String,
password:String,
phonno:Number
})
//creating a model
const User= mongo.model("User",userSchema);
//array to store user data
let users=[];
msg="";
const app=express();
app.set("view engine","ejs");
app.use(bodyparser.urlencoded({extended:true}));
app.use(express.static("public"))
app.get("/",function(req,res){
res.render("home");
})
app.get("/login",function(req,res){
res.render("login",{msg:msg});
})
app.get("/register",function(req,res){
res.render("register");
})
//when user register him/herself
app.post("/register",function(req,res){
let user={
name:req.body.name,
email:req.body.email,
password:req.body.password,
phonno:req.body.phonno,
}
users.push(user);
User.insertMany(users,function(err){
if(err){
console.log(err);
}
else{
console.log("success");
res.render("secrets");
}
})
})
//when user login
app.post("/login",function(req,res){
let email=req.body.email;
let password=req.body.password;
User.findOne({email:email},function(err,result){
if(err){
console.log(err);
}
else{
if(result.password===password){
console.log("success");
res.render("secrets");
msg="";
}
else{
msg="Please Try Again incorrect password or username"
res.redirect("login")
}
}
})
})
//when user click logout
app.get("/logout",function(req,res){
res.render("home")
})
app.listen(3000,function(){
console.log("Server id started on port 3000 ");
})