?
Current Path : /home1/savoy/public_html/savoyglobal.net/piadraft/system/application/views/Settings/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/piadraft/system/application/views/Settings/new_role.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <?php $attributes = array('id' => 'InsertRoleForm'); echo form_open('settings/insertrole',$attributes); ?> <div id="userchecdiv" style="display: none;"></div> <fieldset class="lefttalign"><legend>Create New Profile</legend> <ul> <li> <label>Profile Name</label> <select name="txtrolename" id="txtrolename" onchange="validateform('txtrolename'),checkexistence('user_roles','name',this.value)"><option value="">Select</option> <?php foreach($designation->result() as $design) { echo '<option value="'.$design->id.'">'. $design->designation .'</option>'; } ?> </select> <span id="txtrolenameInfo" class="red_bold">*</span> </li> </ul> </fieldset> <?php $this->load->view('Settings/user_permission');?> <br><br> <input type="submit" onclick="return Insert_Role();" value="Add Profile" /> <br/><br/> <?php form_close(); ?>