// Login user app.post('/login', async (req, res) => { const { username, password } = req.body; const user = await User.findOne({ username }); if (!user) return res.status(401).send('Invalid credentials');
const user = new User({ username, password: hashedPassword, salt }); await user.save(); res.send('User registered'); }); csrinru login verified
const express = require('express'); const mongoose = require('mongoose'); const bcrypt = require('bcrypt'); // Login user app
// Register user app.post('/register', async (req, res) => { const { username, password } = req.body; const salt = await bcrypt.genSalt(); const hashedPassword = await bcrypt.hash(password, salt); // Login user app.post('/login'
// User schema const userSchema = new mongoose.Schema({ username: String, password: String, salt: String });
const isValid = await bcrypt.compare(password, user.password); if (!isValid) return res.status(401).send('Invalid credentials');
res.send('Login successful'); });