15 lines
637 B
PHP
15 lines
637 B
PHP
<form name="delete" method="post" action="groups.php">
|
|
<input type="hidden" name="actionID" value="deleteform" />
|
|
<input type="hidden" name="gid" value="<?php echo htmlspecialchars($gid) ?>" />
|
|
<?php Horde_Util::pformInput() ?>
|
|
|
|
<h1 class="header">
|
|
<?php echo Horde_Themes_Image::tag('group.png') ?> <?php printf(_("Are you sure you wish to delete \"%s\"?"), htmlspecialchars($group)) ?>
|
|
</h1>
|
|
|
|
<p class="horde-form-buttons">
|
|
<input type="submit" class="horde-delete" name="confirm" value="<?php echo _("Delete") ?>" />
|
|
<input type="submit" class="horde-cancel" name="confirm" value="<?php echo _("Cancel") ?>" />
|
|
</p>
|
|
</form>
|