first commit
This commit is contained in:
15
application/views/admin/role_delete.php
Executable file
15
application/views/admin/role_delete.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title">Role delete<?php echo $this->lang->line('role_delete').": ".$form[0]['name'] ?>?</h4>
|
||||
</div> <!-- /modal-header -->
|
||||
<div class="modal-body">
|
||||
<div class="alert alert-danger" role="alert"><strong>WARNING: </strong><?php echo '<p>Delete role!!'.$this->lang->line('role_delete_message').'</p>';
|
||||
?></div>
|
||||
</div> <!-- /modal-body -->
|
||||
<div class="modal-footer">
|
||||
<form ACTION="<?php echo BASE_URL.'/admin/settings/roles/delete/'.$form[0]['roleID']; ?>" method="POST" name="pageform" id="pageform">
|
||||
<input name="deleteid" type="hidden" id="deleteid" value="<?php echo $form[0]['roleID'] ?>" />
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo $this->lang->line('btn_cancel'); ?></button>
|
||||
<input class="btn btn-danger" type="submit" value="<?php echo $this->lang->line('btn_delete'); ?>"/>
|
||||
</form>
|
||||
</div> <!-- /modal-footer -->
|
||||
Reference in New Issue
Block a user