\

\
diff --git a/website/public/styles/menu.css b/website/public/styles/menu.css
index ce294da..204acd0 100644
--- a/website/public/styles/menu.css
+++ b/website/public/styles/menu.css
@@ -63,4 +63,32 @@
#quick-links i:hover {
color: #FBC02D;
+}
+
+.notification-options {
+ display: none;
+ width: 100%;
+}
+
+.notification-options form {
+ width: 100%;
+ text-align: center;
+}
+
+.notification-options button {
+ display: inline-block;
+ padding: 5px 20px;
+ width: auto;
+}
+
+.accept-notification:hover {
+ color: #4CAF50;
+}
+
+.deny-notification:hover {
+ color: firebrick;
+}
+
+.friend-item:hover .notification-options {
+ display: inline-block;
}
\ No newline at end of file
diff --git a/website/queries/private_message.php b/website/queries/private_message.php
index 4fbb55d..d40ee88 100644
--- a/website/queries/private_message.php
+++ b/website/queries/private_message.php
@@ -80,6 +80,7 @@ function selectAllUnreadChat() {
$stmt = $GLOBALS["db"]->prepare("
SELECT
LEFT(CONCAT(`user`.`fname`, ' ', `user`.`lname`), 15) as `name`,
+ `user`.`userID`,
IFNULL(
`profilepicture`,
'../img/notbad.jpg'
diff --git a/website/views/chat-view.php b/website/views/chat-view.php
index 598b3ee..797e457 100644
--- a/website/views/chat-view.php
+++ b/website/views/chat-view.php
@@ -35,7 +35,12 @@