1<?php
2// This file is part of BOINC.
3// http://boinc.berkeley.edu
4// Copyright (C) 2008 University of California
5//
6// BOINC is free software; you can redistribute it and/or modify it
7// under the terms of the GNU Lesser General Public License
8// as published by the Free Software Foundation,
9// either version 3 of the License, or (at your option) any later version.
10//
11// BOINC is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14// See the GNU Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public License
17// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
18
19require_once("../inc/util.inc");
20
21check_get_args(array("st"));
22
23$st = get_str("st", true);
24
25page_head(tra("PayPal - Transaction Completed"));
26
27if ($st == "Completed") {
28    echo "<div>".tra("Thank you for donating!")."<br>\n";
29    echo tra("Your donation for has been completed.")."<br>\n";
30    echo tra("Your donation will be added to the progress bar after confirmation by PayPal.")."</div>";
31} else {
32    echo "<strong>".tra("You have canceled your donation.")."</strong>";
33}
34
35page_tail();
36
37?>
38