From 6cb4eb26d44dcbe9ee869a546fbfc4d189f92abe Mon Sep 17 00:00:00 2001 From: Maxime Gosselin~ <maxime.gosselin.etu@univ-lille.fr> Date: Fri, 7 Mar 2025 11:03:36 +0100 Subject: [PATCH] Ajout de toutes les favicons --- WEB-INF/vue/accueil.jsp | 1 + WEB-INF/vue/chat.jsp | 1 + WEB-INF/vue/compte.jsp | 1 + WEB-INF/vue/creerFil.jsp | 1 + WEB-INF/vue/error.jsp | 1 + WEB-INF/vue/fils.jsp | 1 + WEB-INF/vue/filsSuivis.jsp | 1 + WEB-INF/vue/login.jsp | 1 + WEB-INF/vue/signin.jsp | 1 + 9 files changed, 9 insertions(+) diff --git a/WEB-INF/vue/accueil.jsp b/WEB-INF/vue/accueil.jsp index 55426eb..3d29944 100644 --- a/WEB-INF/vue/accueil.jsp +++ b/WEB-INF/vue/accueil.jsp @@ -16,6 +16,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="<%= request.getContextPath() %>/res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container-fluid"> diff --git a/WEB-INF/vue/chat.jsp b/WEB-INF/vue/chat.jsp index 07a7a61..fc8ddd6 100644 --- a/WEB-INF/vue/chat.jsp +++ b/WEB-INF/vue/chat.jsp @@ -36,6 +36,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="<%= request.getContextPath() %>/res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> <!-- Pour le offcanva (liste des utilisateurs du threads) --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> diff --git a/WEB-INF/vue/compte.jsp b/WEB-INF/vue/compte.jsp index 8bfb1ab..c4552fc 100644 --- a/WEB-INF/vue/compte.jsp +++ b/WEB-INF/vue/compte.jsp @@ -20,6 +20,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="<%= request.getContextPath() %>/res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container-fluid"> diff --git a/WEB-INF/vue/creerFil.jsp b/WEB-INF/vue/creerFil.jsp index a61d17e..0c6ce77 100644 --- a/WEB-INF/vue/creerFil.jsp +++ b/WEB-INF/vue/creerFil.jsp @@ -8,6 +8,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="<%= request.getContextPath() %>/res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container-fluid"> diff --git a/WEB-INF/vue/error.jsp b/WEB-INF/vue/error.jsp index ebe0e12..acd2621 100644 --- a/WEB-INF/vue/error.jsp +++ b/WEB-INF/vue/error.jsp @@ -7,6 +7,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon_error.ico"> <title>Villeneuve Chat - Erreur</title> </head> <body> diff --git a/WEB-INF/vue/fils.jsp b/WEB-INF/vue/fils.jsp index 16d5057..fb6a873 100644 --- a/WEB-INF/vue/fils.jsp +++ b/WEB-INF/vue/fils.jsp @@ -23,6 +23,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container-fluid"> diff --git a/WEB-INF/vue/filsSuivis.jsp b/WEB-INF/vue/filsSuivis.jsp index d1721b8..e2c9bda 100644 --- a/WEB-INF/vue/filsSuivis.jsp +++ b/WEB-INF/vue/filsSuivis.jsp @@ -22,6 +22,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"> <link href="res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container-fluid"> diff --git a/WEB-INF/vue/login.jsp b/WEB-INF/vue/login.jsp index 7ae5da5..7155610 100644 --- a/WEB-INF/vue/login.jsp +++ b/WEB-INF/vue/login.jsp @@ -10,6 +10,7 @@ <title>Villeneuve Chat - Connexion</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container d-flex justify-content-center flex-column"> diff --git a/WEB-INF/vue/signin.jsp b/WEB-INF/vue/signin.jsp index f58af07..75adace 100644 --- a/WEB-INF/vue/signin.jsp +++ b/WEB-INF/vue/signin.jsp @@ -11,6 +11,7 @@ <title>Villeneuve Chat - Créer un compte</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="res/font.css" rel="stylesheet"> + <link rel="icon" type="image/x-icon" href="<%= request.getContextPath() %>/res/favicon.ico"> </head> <body> <div class="container d-flex justify-content-center flex-column"> -- GitLab