mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-29 04:32:17 +02:00
10 lines
436 B
PHP
10 lines
436 B
PHP
<?php
|
|
require_once dirname(__FILE__) .'/../../../sources/Afup/Bootstrap/Http.php';
|
|
|
|
$paybox = "<p>Votre paiement a été annulé. Désolé.</p>";
|
|
$paybox .= "<p>Une questions ? N'hésitez pas à contacter <a href=\"mailto:tresorier@afup.org\">le trésorier</a>.</p>";
|
|
$paybox .= "<p><strong></srong><a href=\"index.php\">retour à votre compte</a></strong></p>";
|
|
|
|
$smarty->assign('paybox', $paybox);
|
|
$smarty->display('paybox.html');
|
|
?>
|