# give/4.16.9/src/Views/Form/defaultFormDonationProcessing.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 25 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Views/Form/defaultFormDonationProcessing.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Views/Form/defaultFormDonationProcessing.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Views/Form/defaultFormDonationProcessing.php#L10-L20`.

```php
<?php
/**
 * Payment confirmation view.
 *
 * @since 2.7.0
 */

?>
<!DOCTYPE html>
<html <?php
language_attributes(); ?>>
<head>
    <meta charset="utf-8">
    <title><?php
        _e('Redirecting...', 'give'); ?></title>
</head>
<body>
<script type="text/javascript">
    setTimeout(function() {
        window.location = '<?php echo give_get_success_page_uri(); ?>';
    }, 5000);
</script>
</body>
</html>

```
