29422fa553
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@386 b3834d28-1941-0410-a4f8-b48e95affb8f
20 lines
513 B
PHP
20 lines
513 B
PHP
<?php
|
|
$this->includeTemplate($GLOBALS['top_include']);
|
|
?>
|
|
|
|
<form action="<?= $formaction ?>" method="post">
|
|
<p><?php echo T_('Are you sure?'); ?></p>
|
|
<p>
|
|
<input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" />
|
|
<input type="submit" name="cancel" value="<?php echo T_('No'); ?>" />
|
|
</p>
|
|
|
|
<?php if (isset($referrer)): ?>
|
|
<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div>
|
|
<?php endif; ?>
|
|
|
|
</form>
|
|
|
|
<?php
|
|
$this->includeTemplate($GLOBALS['bottom_include']);
|
|
?>
|