Skip to content

Commit

Permalink
Add : Login Page
Browse files Browse the repository at this point in the history
  • Loading branch information
Puskar-Roy committed Sep 5, 2023
1 parent 46991ea commit e54bd12
Show file tree
Hide file tree
Showing 18 changed files with 1,715 additions and 51 deletions.
11 changes: 11 additions & 0 deletions backend/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const express = require('express');

const app = express();


app.get('/',(req,res)=>{
res.send("Hello from")
})
app.listen(8080,()=>{
console.log("Server Start On PORT 8000");
})
Loading

0 comments on commit e54bd12

Please sign in to comment.