PHP Classes

File: application/views/admincp/usergroupsEdit.php

Recommend this page to a friend!
  Classes of Minh Tien   Noblesse CMS   application/views/admincp/usergroupsEdit.php   Download  
File: application/views/admincp/usergroupsEdit.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Noblesse CMS
Content management system with custom plugins
Author: By
Last change:
Date: 8 years ago
Size: 956 bytes
 

Contents

Class file image Download
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">Edit user group</h3>
  </div>
  <div class="panel-body">
    <div class="row">
    <form action="" method="post" enctype="multipart/form-data">
        <div class="col-lg-12">
       
        <?php echo $alert;?>
<p>
                <label><strong>Title</strong></label>
                <input type="text" class="form-control" name="send[group_title]" value="<?php echo $edit['group_title'];?>" placeholder="Title" />
            </p>
 
            <p>
                <label><strong>Permission (separator by new line)</strong></label>
                <textarea id="editor1" rows="15" name="send[groupdata]" class="form-control ckeditor"><?php echo $edit['groupdata'];?></textarea>
            </p>
            
           <button type="submit" class="btn btn-primary" name="btnSave">Save changes</button>
        </div>

    </form>
    </div>
  </div>
</div>