236 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			236 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="fr">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Dashboard Financier</title>
 | 
						|
    <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
 | 
						|
    <link rel="icon" href="../../media/img/logoIcon.ico" type="image/x-icon" />
 | 
						|
    <link rel="stylesheet" href="../../css/FINANCE/finance.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
 | 
						|
    
 | 
						|
    <div class="header w3-bar w3-card-4 w3-dark-blue">
 | 
						|
        <!-- Logo pour retourner à l'accueil -->
 | 
						|
        <div class="logo-container w3-bar-item">
 | 
						|
            <img src="../../media/img/logoWhite.png" alt="Logo Accueil" class="w3-image" style="width:150px; height:40px;">
 | 
						|
        </div>
 | 
						|
    
 | 
						|
        <!-- Bouton burger pour petit écran -->
 | 
						|
        <a href="javascript:void(0)" class="w3-bar-item w3-button w3-hide-large w3-right w3-padding-16" onclick="toggleMenu()">☰</a>
 | 
						|
    
 | 
						|
        <!-- Catégories dans le header -->
 | 
						|
        <div id="menu" class="categories w3-hide-small w3-hide-medium w3-bar-item">
 | 
						|
            <a href="./finance.html" class="w3-bar-item w3-button">Accueil</a>
 | 
						|
            <a href="./paiements_en_attente.html" class="w3-bar-item w3-button">Paiements en attente</a>
 | 
						|
            <a href="./historique_paiements.html" class="w3-bar-item w3-button">Historique des paiements</a>
 | 
						|
            <a href="./budget.html" class="w3-bar-item w3-button">Budget</a>
 | 
						|
            <a href="./rapports_financiers.html" class="w3-bar-item w3-button">Rapports Financiers</a>
 | 
						|
            <a href="./mes_informations.html" class="w3-bar-item w3-button">Mes informations</a>
 | 
						|
        </div>
 | 
						|
    
 | 
						|
        <!-- Section utilisateur avec déconnexion -->
 | 
						|
        <div class="user-section w3-right w3-hide-small w3-hide-medium">
 | 
						|
            <div class="user-name">
 | 
						|
                Jean DUPONT
 | 
						|
            </div>
 | 
						|
            <div class="logout-container w3-bar-item">
 | 
						|
                <a href="./notifications.html" title="Notifications">
 | 
						|
                    <img src="../../media/img/notifs.png" alt="Logo notification" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
                <a href="./settings.html" title="Paramètres">
 | 
						|
                    <img src="../../media/img/settings.png" alt="Logo paramètres" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
                <a href="../../index.html" title="Se déconnecter">
 | 
						|
                    <img src="../../media/img/LogOutWhite.png" alt="Logo Déconnexion" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    
 | 
						|
        <!-- Menu mobile caché au départ -->
 | 
						|
        <div id="mobileMenu" class="w3-bar-block w3-hide w3-hide-large w3-dark-blue">
 | 
						|
            <a href="./finance.html" class="w3-bar-item w3-button">Accueil</a>
 | 
						|
            <a href="./paiements_en_attente.html" class="w3-bar-item w3-button">Paiements en attente</a>
 | 
						|
            <a href="./historique_paiements.html" class="w3-bar-item w3-button">Historique des paiements</a>
 | 
						|
            <a href="./budget.html" class="w3-bar-item w3-button">Budget</a>
 | 
						|
            <a href="./rapports_financiers.html" class="w3-bar-item w3-button">Rapports Financiers</a>
 | 
						|
            <a href="./mes_informations.html" class="w3-bar-item w3-button">Mes informations</a>
 | 
						|
    
 | 
						|
            <!-- Section utilisateur pour mobile -->
 | 
						|
            <div class="w3-bar-item w3-border-top w3-margin-top">
 | 
						|
                <div class="user-name">Jean DUPONT</div>
 | 
						|
                <a href="./notifications.html" title="Notifications">
 | 
						|
                    <img src="../../media/img/notifs.png" alt="Logo notification" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
                <a href="./settings.html" title="Paramètres">
 | 
						|
                    <img src="../../media/img/settings.png" alt="Logo paramètres" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
                <a href="../../index.html" title="Se déconnecter">
 | 
						|
                    <img src="../../media/img/LogOutWhite.png" alt="Logo Déconnexion" style="width:24px; height:24px;">
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    <div class="dashboard-container w3-content">
 | 
						|
        <!-- Alertes et Notifications -->
 | 
						|
        <div class="section-header w3-container w3-light-gray w3-border-left" style="border-left: 5px solid #20195e;">
 | 
						|
            <h2>Alertes et Notifications</h2>
 | 
						|
        </div>
 | 
						|
        <div id="notifications-container" class="w3-container">
 | 
						|
            <!-- Notifications -->
 | 
						|
            <div class="w3-panel w3-red w3-display-container alert">
 | 
						|
                <span class="w3-button w3-red w3-large w3-display-topright" onclick="this.parentElement.style.display='none'">×</span>
 | 
						|
                <p><strong>Paiements en attente :</strong> Vous avez des paiements qui n'ont pas encore été traités. Merci de vérifier dans : <a href="paiements_en_attente.html">Paiements en attente</a>.</p>
 | 
						|
            </div>
 | 
						|
            <div class="w3-panel w3-green w3-display-container success">
 | 
						|
                <span class="w3-button w3-green w3-large w3-display-topright" onclick="this.parentElement.style.display='none'">×</span>
 | 
						|
                <p><strong>Rapport validé :</strong> Votre dernier rapport financier a été validé. Vous pouvez le consulter dans : <a href="rapports_financiers.html">Rapports Financiers</a>.</p>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <!-- Paiements en attente -->
 | 
						|
        <div class="section-header w3-container w3-light-gray w3-border-left" style="border-left: 5px solid #20195e;">
 | 
						|
            <h2>Paiements en Attente</h2>
 | 
						|
        </div>
 | 
						|
        <div class="card w3-card-4 w3-white">
 | 
						|
            <div class="table-container w3-responsive">
 | 
						|
                <table class="w3-table-all">
 | 
						|
                    <thead>
 | 
						|
                        <tr>
 | 
						|
                            <th>ID Transaction</th>
 | 
						|
                            <th>Période</th>
 | 
						|
                            <th>Montant en Attente (€)</th>
 | 
						|
                            <th>Date prévue de paiement</th>
 | 
						|
                            <th>Statut</th>
 | 
						|
                        </tr>
 | 
						|
                    </thead>
 | 
						|
                    <tbody>
 | 
						|
                        <tr>
 | 
						|
                            <td>002</td>
 | 
						|
                            <td>Octobre 2024</td>
 | 
						|
                            <td>1200,00</td>
 | 
						|
                            <td>15/10/2024</td>
 | 
						|
                            <td>En attente</td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <td>003</td>
 | 
						|
                            <td>Novembre 2024</td>
 | 
						|
                            <td>1800,00</td>
 | 
						|
                            <td>15/11/2024</td>
 | 
						|
                            <td>En attente</td>
 | 
						|
                        </tr>
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
            <div class="button-container w3-center w3-margin-top">
 | 
						|
                <a href="./paiements_en_attente.html" class="w3-button w3-blue">
 | 
						|
                    Voir plus
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <!-- Rapports Financiers -->
 | 
						|
        <div class="section-header w3-container w3-light-gray w3-border-left" style="border-left: 5px solid #20195e;">
 | 
						|
            <h2>Rapports Financiers</h2>
 | 
						|
        </div>
 | 
						|
        <div class="card w3-card-4 w3-white">
 | 
						|
            <div class="table-container w3-responsive">
 | 
						|
                <table class="w3-table-all">
 | 
						|
                    <thead>
 | 
						|
                        <tr>
 | 
						|
                            <th>Rapport</th>
 | 
						|
                            <th>Date de création</th>
 | 
						|
                            <th>Statut</th>
 | 
						|
                            <th>Actions</th>
 | 
						|
                        </tr>
 | 
						|
                    </thead>
 | 
						|
                    <tbody>
 | 
						|
                        <tr>
 | 
						|
                            <td>Rapport d'Octobre 2024</td>
 | 
						|
                            <td>01/10/2024</td>
 | 
						|
                            <td>Validé</td>
 | 
						|
                            <td><a href="rapports_financiers.html#octobre2024" class="w3-button w3-blue">Voir Rapport</a></td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <td>Rapport de Novembre 2024</td>
 | 
						|
                            <td>01/11/2024</td>
 | 
						|
                            <td>En cours</td>
 | 
						|
                            <td><a href="#" class="w3-button w3-blue">Préparer Rapport</a></td>
 | 
						|
                        </tr>
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
            <div class="button-container w3-center w3-margin-top">
 | 
						|
                <a href="./rapports_financiers.html" class="w3-button w3-blue">
 | 
						|
                    Voir plus
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <!-- Historique des paiements du personnel -->
 | 
						|
        <div class="section-header w3-container w3-light-gray w3-border-left" style="border-left: 5px solid #20195e;">
 | 
						|
            <h2>Historique des Paiements du Personnel</h2>
 | 
						|
        </div>
 | 
						|
        <div class="card w3-card-4 w3-white">
 | 
						|
            <div class="table-container w3-responsive">
 | 
						|
                <table class="w3-table-all">
 | 
						|
                    <thead>
 | 
						|
                        <tr>
 | 
						|
                            <th>Période</th>
 | 
						|
                            <th>Personnel</th>
 | 
						|
                            <th>Montant (€)</th>
 | 
						|
                            <th>Date de Paiement</th>
 | 
						|
                            <th>Bulletin de paie</th>
 | 
						|
                        </tr>
 | 
						|
                    </thead>
 | 
						|
                    <tbody>
 | 
						|
                        <tr>
 | 
						|
                            <td>Septembre 2024</td>
 | 
						|
                            <td>Denis MONNERAT (permanent)</td>
 | 
						|
                            <td>1800,00</td>
 | 
						|
                            <td>01/10/2024</td>
 | 
						|
                            <td><a href="https://ensap.gouv.fr" target="_blank" class="w3-button w3-blue">Voir Bulletin</a></td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <td>Août 2024</td>
 | 
						|
                            <td>Maxime MENAULT (vacataire)</td>
 | 
						|
                            <td>870,00</td>
 | 
						|
                            <td>01/09/2024</td>
 | 
						|
                            <td><a href="https://ensap.gouv.fr" target="_blank" class="w3-button w3-blue">Voir Bulletin</a></td>
 | 
						|
                        </tr>
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
            <div class="button-container w3-center w3-margin-top">
 | 
						|
                <a href="./historique_paiements.html" class="w3-button w3-blue">
 | 
						|
                    Voir plus
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="footer w3-center w3-dark-blue w3-padding-16">
 | 
						|
        <p>© 2024 IUT de Fontainebleau. Tous droits réservés | 
 | 
						|
            <a href="../mentions_legales.html">Mentions légales</a>
 | 
						|
        </p>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <script>
 | 
						|
        function toggleMenu() {
 | 
						|
            var x = document.getElementById("mobileMenu");
 | 
						|
            if (x.className.indexOf("w3-show") == -1) {
 | 
						|
                x.className += " w3-show";
 | 
						|
            } else {
 | 
						|
                x.className = x.className.replace(" w3-show", "");
 | 
						|
            }
 | 
						|
        }
 | 
						|
    </script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |