You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
314 B
PHP

<?php
$content = new PageSection('csrf');
$content->set('address', $relative_request_url);
$content->set('fulladdress', $absolute_request_url);
$page = new PageSection('base');
$page->set('title', 'Form submission failed');
$page->set('content', $content);
$page->set('alerts', array());
echo $page->generate();