MISP/app/View/Signatures/add.ctp

28 lines
834 B
Plaintext
Raw Normal View History

2011-11-26 10:45:31 +01:00
<div class="signatures form">
<?php echo $this->Form->create('Signature');?>
<fieldset>
<legend><?php echo __('Add Signature'); ?></legend>
2011-11-26 10:45:31 +01:00
<?php
echo $this->Form->hidden('event_id');
echo $this->Form->input('type');
2012-03-06 13:45:16 +01:00
echo $this->Form->input('to_ids', array(
'checked' => true,
'after' => ' <i>Is this signature specific enough to be exported to IDS systems?</i>',
2012-03-06 13:45:16 +01:00
));
echo $this->Form->input('value', array(
'error' => array('escape' => false),
2012-03-06 13:45:16 +01:00
));
echo $this->Form->input('batch_import', array(
'type' => 'checkbox',
'after' => ' <i>When selected each line in the value field will be a signature.</i>',
2012-03-06 13:45:16 +01:00
));
2011-11-26 10:45:31 +01:00
?>
</fieldset>
<?php echo $this->Form->end(__('Submit'));?>
2011-11-26 10:45:31 +01:00
</div>
<div class="actions">
<ul>
<?php echo $this->element('actions_menu'); ?>
</ul>
</div>