35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Seitentemplate: del
|
|
*
|
|
* @package baseContent
|
|
* @subpackage user
|
|
*/
|
|
?>
|
|
<h2><?php echo $this->get_field('title'); ?></h2>
|
|
|
|
|
|
<form name="adminform" action="/user/del/<?php $this->get_field('id'); ?>" method="post">
|
|
|
|
<?php if ( !empty($data) ) { ?>
|
|
|
|
<fieldset id="userdel"><h3>Bestätigung</h3>
|
|
<div class="formtop"> </div>
|
|
<p>Ihr Benutzeraccount wird endgültig gelöscht, nachdem Sie den "Löschen"-Knopf betätigt haben.</p>
|
|
<div class="fieldbottom"> </div>
|
|
<p class="formbuttons"><a onclick="window.history.back();" onkeypress="window.history.back();"><img src="/public/img/admin/button_abbrechen.gif" width="69" height="20" alt="Abbrechen" /></a> <a onclick="document.adminform.submit()" onkeypress="document.adminform.submit()"><img src="/public/img/admin/button_loeschen.gif" width="69" height="20" alt="Löschen" /></a></p>
|
|
|
|
<?php } else { ?>
|
|
|
|
<fieldset id="userdel"><h3>Fehler</h3>
|
|
<div class="formtop"> </div>
|
|
<p>Zurück zur <a href="/">Startseite</a>.</p>
|
|
<div class="fieldbottom"> </div>
|
|
|
|
<?php } ?>
|
|
|
|
<div class="formbottom"> </div>
|
|
</fieldset>
|
|
</form>
|
|
|