forked from iamrahulmahato/ElementalUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
123 lines (101 loc) · 3.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
const express = require('express');
const app = express();
const port = 8080;
const bodyParser = require('body-parser');
const bcrypt = require('bcrypt');
const saltRounds = 10;
const mongoose = require('mongoose');
// Connect to MongoDB
mongoose.connect("mongodb://127.0.0.1:27017/rahuldatabase", {
useNewUrlParser: true,
useUnifiedTopology: true
});
app.use(bodyParser.urlencoded({ extended: true }));
// User schema
const userSchema = new mongoose.Schema({
name: String,
Phoneno: Number,
email: String,
password: String
});
const User = mongoose.model("User", userSchema);
// Set EJS as the templating engine
app.set('view engine', 'ejs');
app.set('views', './views');
// Serve static files (CSS, images, etc.)
app.use(express.static('public'));
// Route for the login page
app.get('/login', (req, res) => {
res.render("login.ejs");
});
// Route for the register page
app.get('/register', (req, res) => {
res.render("register.ejs");
});
// Register user and save to the database
app.post("/register", (req, res) => {
const { name, Phoneno, email, password } = req.body;
bcrypt.hash(password, saltRounds, (err, hash) => {
if (err) {
console.error(err);
res.redirect("/register");
} else {
const newUser = new User({
name: name,
Phoneno: Phoneno,
email: email,
password: hash
});
newUser.save()
.then(() => {
console.log("User registered successfully");
res.redirect("/login");
})
.catch((err) => {
console.error(err);
res.redirect("/register");
});
}
});
});
app.post("/login", async (req, res) => {
const { email, password } = req.body;
try {
const foundUser = await User.findOne({ email: email });
if (foundUser) {
const result = await bcrypt.compare(password, foundUser.password);
if (result === true) {
res.render("welcome.ejs", { userName: foundUser.name });
} else {
console.log("Password incorrect");
res.render("login.ejs", { error: "Invalid email or password!" });
}
} else {
console.log("User not found");
res.render("login.ejs", { error: "Invalid email or password!" });
}
} catch (err) {
console.error(err);
res.render("login.ejs", { error: "An error occurred!" });
}
});
app.get('/welcome',(req,res)=>{
res.render("welcome.ejs");
})
// Default route to login page
app.get('/', (req, res) => {
res.redirect("/login");
});
app.get('/profile', (req, res) => {
// Example user data
const user = {
profilePicture: 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png', // Replace with your default or actual profile picture path
name: 'John Doe',
email: '[email protected]'
};
res.render('MyProfile.ejs', { user });
});
// Start the server
app.listen(port, () => {
console.log(`App listening on port ${port}`);
});