Add circle-user-solid.svg icon from Font Awesome

This commit is contained in:
2025-07-21 20:42:11 +02:00
parent e4bceb8258
commit 7ab62b8d13
37 changed files with 1327 additions and 1334 deletions

View File

@@ -18,10 +18,6 @@ app.use(express.json());
app.use(cors());
app.get("/", (req, res) => {
res.render("index.ejs");
});
app.post("/api/login", async (req, res) => {
console.log(req.body);
@@ -42,5 +38,5 @@ app.post("/api/login", async (req, res) => {
});
app.listen(port, () => {
console.log(`Server is running at http://localhost:${port}`);
console.log(`Express backend server is running at http://localhost:${port}`);
});