mirror of https://github.com/MISP/MISP
28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<div class="confirmation">
|
|
<?php
|
|
echo $this->Form->create('EventBlocklist', array('style' => 'margin:0px;', 'id' => 'PromptForm'));
|
|
echo $this->Form->input('ids', array(
|
|
'type' => 'hidden',
|
|
'div' => 'hidden',
|
|
'value' => json_encode($event_ids),
|
|
));
|
|
?>
|
|
<legend><?php echo __('Delete blocklisted events'); ?></legend>
|
|
<div style="padding-left:5px;padding-right:5px;padding-bottom:5px;">
|
|
<p><?php echo __('Are you sure you want to delete from the blocklist the selected events?'); ?></p>
|
|
<table>
|
|
<tr>
|
|
<td style="vertical-align:top">
|
|
<button role="button" tabindex="0" aria-label="Delete" title="Delete" id="PromptYesButton" class="btn btn-primary">Yes</button>
|
|
</td>
|
|
<td style="width:540px;">
|
|
</td>
|
|
<td style="vertical-align:top;">
|
|
<span role="button" tabindex="0" aria-label="Cancel" title="Cancel" class="btn btn-inverse" id="PromptNoButton" onClick="cancelPrompt();">No</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?= $this->Form->end(); ?>
|
|
</div>
|