merchant-frontend-examples

ZZZ: Inactive/Deprecated
Log | Files | Refs

donate.php (418B)


      1 <?php
      2   // This file is in the public domain.
      3 
      4   // Next two lines offer Taler payment option for Taler wallets:
      5   http_response_code(402); // 402: Payment required
      6   header ('X-Taler-Contract-Url: /generate-order.php');
      7 ?>
      8 <!DOCTYPE html>
      9 <html lang="en">
     10   <head>
     11     <title>Select payment method</title>
     12   </head>
     13   <body>
     14     Here you should put the HTML for the non-Taler (credit card) payment.
     15   </body>
     16 </html>