Server IP : 192.185.129.71 / Your IP : 18.219.116.52 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/todos/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <div class="modal fade" id="__todo" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel"> <span class="edit-title hide"><?php echo _l('todo_edit_title'); ?></span> <span class="add-title hide"><?php echo _l('todo_add_title'); ?></span> </h4> </div> <?php echo form_open('admin/todo/todo', ['id' => 'add_new_todo_item']); ?> <div class="modal-body"> <div class="row"> <?php echo form_hidden('todoid', ''); ?> <div class="col-md-12"> <?php echo render_textarea('description', 'add_new_todo_description', ''); ?> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal"><?php echo _l('close'); ?></button> <button type="submit" class="btn btn-primary"><?php echo _l('submit'); ?></button> </div> <?php echo form_close(); ?> </div> </div> </div>