File: /home/jairicem/bunkerltd.com/themes/default/admin/views/notifications/add.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="fa fa-2x">×</i>
</button>
<h4 class="modal-title" id="myModalLabel"><?php echo lang('add_notification'); ?></h4>
</div>
<?php $attrib = ['data-toggle' => 'validator', 'role' => 'form'];
echo admin_form_open('notifications/add', $attrib); ?>
<div class="modal-body">
<p><?= lang('enter_info'); ?></p>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<?php echo lang('from', 'from_date'); ?>
<div class="controls">
<?php echo form_input('from_date', '', 'class="form-control datetime" id="from_date" required="required"'); ?>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<?php echo lang('till', 'to_date'); ?>
<div class="controls">
<?php echo form_input('to_date', '', 'class="form-control datetime" id="to_date" required="required"'); ?>
</div>
</div>
</div>
</div>
<div class="form-group">
<?php echo lang('comment', 'comment'); ?>
<div class="controls">
<?php echo form_textarea($comment); ?>
</div>
</div>
<div class="form-group">
<input type="radio" class="checkbox" name="scope" value="1" id="customer"><label for="customer"
class="padding05"><?= lang('for_customers_only') ?></label>
<input type="radio" class="checkbox" name="scope" value="2" id="staff"><label for="staff"
class="padding05"><?= lang('for_staff_only') ?></label>
<input type="radio" class="checkbox" name="scope" value="3" id="both" checked="checked"><label
for="both" class="padding05"><?= lang('for_both') ?></label>
</div>
</div>
<div class="modal-footer">
<?php echo form_submit('add_notification', lang('add_notification'), 'class="btn btn-primary"'); ?>
</div>
</div>
<?php echo form_close(); ?>
</div>
<?= $modal_js ?>
<script type="text/javascript" src="<?= $assets ?>js/custom.js"></script>
<script type="text/javascript" charset="UTF-8">
$.fn.datetimepicker.dates['sma'] = <?=$dp_lang?>;
</script>