skip to Main Content

Css – express.js – static files doesn't connect

Good people! Why doesn't it redirect when I click the "Submit" button on the login page? code in index.js file: app.use(bodyParser.urlencoded({ extended: true })); app.use(express.static(path.join(__dirname, 'public'), { "extensions": ["html", "css", "js"] })); app.use(express.static(path.join(__dirname, 'public'))); app.get('/', (req, res) => { res.sendFile(path.join(__dirname,…

VIEW QUESTION
Back To Top
Search