ejs login and signup with tailwind

This commit is contained in:
knighthawk4227 committed 2025-05-02 01:53:47 -07:00
1 parent 2bd4b1e16e
commit 44cee349e9
4 files changed
+112 -22

No files matched your search

+2 -2
View File
@@ -9,7 +9,7 @@ const app = express();
const port = process.env.PORT || 3000;
app.set('view engine', 'ejs');
app.set('views',path.join(__dirname, 'views'));
app.set('views', path.join(__dirname, '/src/views'));
/*
ROUTINGS
@@ -73,4 +73,4 @@ app.get('/*splat', (req, res) => {
app.listen(port, () => {
console.log(`Server listening on port ${port}`);
});
});