This commit is contained in:
clement callaert 2023-11-05 22:18:09 +01:00
parent 1ccc09ed76
commit efebba8584
2 changed files with 3 additions and 2 deletions

View file

@ -55,7 +55,7 @@ body {
}
.custom-cursor {
cursor: pointer;
cursor: url("cursor/GTA5.cur"), auto;
text-decoration: none;
}
@ -125,7 +125,7 @@ footer div p {
outline: none;
color: rgb(255, 255, 255);
background: #111a52;
cursor: pointer;
cursor: url("cursor/GTA5.cur"), auto;
position: relative;
z-index: 0;
border-radius: 10px;

View file

@ -83,6 +83,7 @@ router.post('/submitResolution/:postId', upload.single('image'), async function
prenom: prenom,
imagePath: path
}
const result = await db.getDb().collection('res').insertOne(resolution);
return res.redirect('/hotLine')
})