\documentclass{rapportENSIAS}
\usepackage{lipsum}
\usepackage{minted}
\definecolor{bg}{rgb}{0.95,0.95,0.95} % Adjust the RGB values as needed
\usepackage{titlesec} % For customizing chapter and section titles
\usepackage{tocloft} % For customizing the table of contents
\usepackage{hyperref} % For adding hyperlinks
\title{Rapport ENSIAS - Template} %Titre du fichier
\begin{document}
%----------- Informations du rapport ---------
\titre{Titre du rapport} %Titre du fichier .pdf
%\UE{UE PRO} %Nom de la UE
\sujet{Projet de Fin d'Année} %Nom du sujet
\enseignant{Prénom \textsc{Nom}} %Nom de l'enseignant
\eleves{Prénom \textsc{Nom} \\
Prénom \textsc{Nom} \\
Prénom \textsc{Nom} } %Nom des élèves
%----------- Initialisation -------------------
\fairemarges %Afficher les marges
\fairepagedegarde %Créer la page de garde
%--------------les premiers pages--------------
\chapter*{Remerciements}
\addcontentsline{toc}{chapter}{Remerciements}
%ecrire ici remerciement
\chapter*{Résumé}
\addcontentsline{toc}{chapter}{Résumé}
%ecrire ici abstract
\chapter*{Liste des Abréviations}
\addcontentsline{toc}{chapter}{Liste des Abréviations}
%ecrire ici
\newpage
\chapter*{Introduction générale}
\addcontentsline{toc}{chapter}{Introduction générale}
% intro
%------------
\newpage
\tabledematieres %Créer la table de matières
\newpage
\listoffigures
\newpage
\listoftables
%------------ Corps du rapport ----------------
\include{Chapters/chapter1}
\include{Chapters/chapter2}
\include{Chapters/chapter3}
\include{Chapters/chapter4}
\include{Chapters/chapter5}
%------------ Liste of listings----------------
%\renewcommand\listoflistingscaption{Liste des codes source}
%\listoflistings
\newpage
\chapter*{Conclusion Générale}
\addcontentsline{toc}{chapter}{Conclusion Générale}
% conclusion
\newpage
\chapter*{Références}
\addcontentsline{toc}{chapter}{Références}
% i didn't use the citation system using .bib file , you can add it if you want
\newpage
\chapter*{Annexes}
\addcontentsline{toc}{chapter}{Annexes}
% add your sections here of each annexe
\end{document}