Advertisement
noam76

index_finance.php

May 11th, 2023
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Application de gestion de finance</title>
  5. </head>
  6. <body>
  7.     <?php include 'menu.php'; ?>
  8.  
  9.     <h1>Ajouter un nouveau paiement</h1>
  10.     <form method="post" action="ajouter_paiement.php">
  11.         <label for="type_paiement">Type de paiement :</label>
  12.         <select name="type_paiement" id="type_paiement">
  13.             <option value="paiement_entrant">Paiement entrant</option>
  14.             <option value="paiement_sortant">Paiement sortant</option>
  15.         </select>
  16.         <br>
  17.  
  18.         <div id="paiement_entrant">
  19.             <!-- Formulaire pour les paiements entrants -->
  20.         </div>
  21.  
  22.         <div id="paiement_sortant">
  23.             <!-- Formulaire pour les paiements sortants -->
  24.         </div>
  25.  
  26.         <button type="reset">Effacer</button>
  27.         <button type="submit">Valider</button>
  28.     </form>
  29.  
  30.     <script src="script.js"></script>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement