18 lines
750 B
PHP
18 lines
750 B
PHP
<?php if (!defined('PICONTROL')) exit(); ?>
|
|
<div>
|
|
<div class="box">
|
|
<div class="inner-header">
|
|
<span><?php _e('Netzwerkkonfiguration - Interface löschen'); ?></span>
|
|
<?php showGoBackIcon('?s=network_configuration'); ?>
|
|
</div>
|
|
<form action="?s=network_configuration&delete=<?php echo urlencode($data['interfaceName']); ?>" method="post">
|
|
<div class="inner">
|
|
<?php _e('Möchtest du das Interface <strong>%s</strong> wirklich unwiderruflich löschen?', $data['interfaceName']); ?>
|
|
</div>
|
|
<div class="inner-end">
|
|
<input type="hidden" name="checksum" value="<?php echo $data['checksum']; ?>" />
|
|
<input type="submit" name="submit" value="<?php _e('Löschen'); ?>" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|