Modification des permanents + w3 css - Commit pour Marwa à cause d'un problème de git
This commit is contained in:
		@@ -6,39 +6,9 @@
 | 
			
		||||
    <title>Dashboard Vacataire</title>
 | 
			
		||||
    <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
 | 
			
		||||
    <link rel="stylesheet" href="../../css/VACATAIRE/vacataire.css">
 | 
			
		||||
    <style>
 | 
			
		||||
        .header {
 | 
			
		||||
            background-color: #370559;
 | 
			
		||||
            color: white;
 | 
			
		||||
        }
 | 
			
		||||
        .logo-container img {
 | 
			
		||||
            width: 200px;
 | 
			
		||||
            height: 50px;
 | 
			
		||||
        }
 | 
			
		||||
        .categories a {
 | 
			
		||||
            font-weight: bold;
 | 
			
		||||
        }
 | 
			
		||||
        .btn {
 | 
			
		||||
            background-color: #370559;
 | 
			
		||||
        }
 | 
			
		||||
        .btn:hover {
 | 
			
		||||
            background-color: #5a0bda;
 | 
			
		||||
        }
 | 
			
		||||
        .alert, .success {
 | 
			
		||||
            position: relative;
 | 
			
		||||
        }
 | 
			
		||||
        .alert .close, .success .close {
 | 
			
		||||
            position: absolute;
 | 
			
		||||
            right: 10px;
 | 
			
		||||
            top: 50%;
 | 
			
		||||
            transform: translateY(-50%);
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            font-weight: bold;
 | 
			
		||||
            font-size: 18px;
 | 
			
		||||
        }
 | 
			
		||||
    </style>
 | 
			
		||||
</head>
 | 
			
		||||
<body class="w3-light-grey">
 | 
			
		||||
<body>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <div class="header w3-bar w3-card-4 w3-dark-blue">
 | 
			
		||||
        <!-- Logo pour retourner à l'accueil -->
 | 
			
		||||
@@ -77,84 +47,83 @@
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <!-- Dashboard -->
 | 
			
		||||
    <div class="w3-content w3-padding-16 dashboard-container">
 | 
			
		||||
        
 | 
			
		||||
        <!-- Alertes et Notifications -->
 | 
			
		||||
        <div class="w3-container w3-white w3-card-4 w3-margin-bottom">
 | 
			
		||||
            <h2 class="w3-text-dark-gray">Alertes et Notifications</h2>
 | 
			
		||||
            <div id="notifications-container">
 | 
			
		||||
                <!-- Notifications -->
 | 
			
		||||
                <div class="w3-panel w3-red alert">
 | 
			
		||||
                    <span class="w3-closebtn close" onclick="this.parentElement.style.display='none';">×</span>
 | 
			
		||||
                    <p><strong>Propositions d'heures en attente :</strong> Vous n'avez toujours pas validé les propositions d'heures. Ces dernières seront automatiquement acceptées dans 3 jours. Merci de le faire au plus vite dans : <a href="mes-heures.html">Mes heures</a>.</p>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="w3-panel w3-green success">
 | 
			
		||||
                    <span class="w3-closebtn close" onclick="this.parentElement.style.display='none';">×</span>
 | 
			
		||||
                    <p><strong>Pièces justificatives :</strong> Vos pièces justificatives ont été validées par le responsable pédagogique et sont accessibles dans : <a href="mes-informations.html">Mes informations et documents</a>.</p>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <!-- Suivi des Paiements -->
 | 
			
		||||
        <div class="w3-container w3-white w3-card-4">
 | 
			
		||||
            <h2 class="w3-text-dark-gray">Suivi des Paiements</h2>
 | 
			
		||||
            <div class="w3-responsive">
 | 
			
		||||
                <table class="w3-table-all w3-centered">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr class="w3-light-grey">
 | 
			
		||||
                            <th>Période</th>
 | 
			
		||||
                            <th>Heures Payées</th>
 | 
			
		||||
                            <th>Montant Brut (€)</th>
 | 
			
		||||
                            <th>Date de Paiement</th>
 | 
			
		||||
                            <th>Bulletin de paie</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td>Septembre 2024</td>
 | 
			
		||||
                            <td>20h</td>
 | 
			
		||||
                            <td>870,00</td>
 | 
			
		||||
                            <td class="w3-text-green">01/10/2024</td>
 | 
			
		||||
                            <td><a href="https://ensap.gouv.fr" target="_blank" class="w3-button w3-round btn" style="background-color: #370559;">Voir Bulletin</a></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td>Octobre 2024</td>
 | 
			
		||||
                            <td>22h</td>
 | 
			
		||||
                            <td>957,00</td>
 | 
			
		||||
                            <td class="w3-text-orange">En attente</td>
 | 
			
		||||
                            <td><a href="https://ensap.gouv.fr" target="_blank" class="w3-button w3-round btn" style="background-color: #370559;">Voir Bulletin</a></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
            <p class="w3-padding"><strong>Prochain paiement prévu :</strong> Novembre 2024 (20h restantes)</p>
 | 
			
		||||
 | 
			
		||||
            <div class="w3-container w3-center">
 | 
			
		||||
                <a href="./paiements.html" class="w3-button w3-round btn w3-margin-bottom" style="background-color: #370559;">Voir tous les paiements</a>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
<div class="dashboard-container">
 | 
			
		||||
    <!-- Alertes et Notifications -->
 | 
			
		||||
    <div class="section-header" id="notifications-section">
 | 
			
		||||
        <h2>Alertes et Notifications</h2>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div id="notifications-container">
 | 
			
		||||
        <!-- Notifications -->
 | 
			
		||||
        <div class="alert">
 | 
			
		||||
            <span class="close" onclick="this.parentElement.style.display='none';">×</span>
 | 
			
		||||
            <p><strong>Propositions d'heures en attente :</strong> Vous n'avez toujours pas validé les propositions d'heures. Ces dernières seront automatiquement acceptées dans 3 jours. Merci de le faire au plus vite dans : <a href="mes-heures.html">Mes heures</a>.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="success">
 | 
			
		||||
            <span class="close" onclick="this.parentElement.style.display='none';">×</span>
 | 
			
		||||
            <p><strong>Pièces justificatives :</strong> Vos pièces justificatives ont été validées par le responsable pédagogique et sont accessibles dans : <a href="mes-informations.html">Mes informations et documents</a>.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    <!-- Footer -->
 | 
			
		||||
    <footer class="w3-center w3-padding w3-text-white" style="background-color: #370559;">
 | 
			
		||||
        <p>© 2024 IUT de Fontainebleau. Tous droits réservés |
 | 
			
		||||
            <a href="../mentions_legales.html">Mentions légales</a>
 | 
			
		||||
        </p>
 | 
			
		||||
    </footer>
 | 
			
		||||
 | 
			
		||||
    <!-- Script pour gérer l'affichage des notifications -->
 | 
			
		||||
    <script>
 | 
			
		||||
        function toggleMenu() {
 | 
			
		||||
            var menu = document.getElementById('menu');
 | 
			
		||||
            var nom = document.getElementById('user-section');
 | 
			
		||||
            if (menu.classList.contains('w3-hide-small')) {
 | 
			
		||||
                menu.classList.remove('w3-hide-small');
 | 
			
		||||
                menu.classList.remove('user-section');
 | 
			
		||||
            } else {
 | 
			
		||||
                menu.classList.add('w3-hide-small');
 | 
			
		||||
            }
 | 
			
		||||
        const notificationsContainer = document.getElementById('notifications-container');
 | 
			
		||||
        const notificationsSection = document.getElementById('notifications-section');
 | 
			
		||||
 | 
			
		||||
        // Vérifiez si le conteneur des notifications est vide
 | 
			
		||||
        if (notificationsContainer.childElementCount === 0) {
 | 
			
		||||
            notificationsSection.style.display = 'none'; // Masquer la section si aucune notification
 | 
			
		||||
        }
 | 
			
		||||
    </script>
 | 
			
		||||
 | 
			
		||||
    <!-- Suivi des Paiements -->
 | 
			
		||||
    <div class="section-header">
 | 
			
		||||
        <h2>Suivi des Paiements</h2>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="card">
 | 
			
		||||
        <div class="table-container">
 | 
			
		||||
            <table>
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th>Période</th>
 | 
			
		||||
                        <th>Heures Payées</th>
 | 
			
		||||
                        <th>Montant Brut (€)</th>
 | 
			
		||||
                        <th>Date de Paiement</th>
 | 
			
		||||
                        <th>Bulletin de paie</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td>Septembre 2024</td>
 | 
			
		||||
                        <td>20h</td>
 | 
			
		||||
                        <td>870,00</td>
 | 
			
		||||
                        <td>01/10/2024</td>
 | 
			
		||||
                        <td><a href="https://ensap.gouv.fr" target="_blank" class="btn">Voir Bulletin</a></td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td>Octobre 2024</td>
 | 
			
		||||
                        <td>22h</td>
 | 
			
		||||
                        <td>957,00</td>
 | 
			
		||||
                        <td>En attente</td>
 | 
			
		||||
                        <td><a href="https://ensap.gouv.fr" target="_blank" class="btn">Voir Bulletin</a></td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p><strong>Prochain paiement prévu :</strong> Novembre 2024 (20h restantes)</p>
 | 
			
		||||
 | 
			
		||||
        <div class="more-payments">
 | 
			
		||||
            <p><a href="./paiements.html" class="btn">Voir tous les paiements</a></p>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="footer">
 | 
			
		||||
    <p>© 2024 IUT de Fontainebleau. Tous droits réservés | 
 | 
			
		||||
        <a href="../mentions_legales.html">Mentions légales</a>
 | 
			
		||||
    </p>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user