Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.09 KB | None | 0 0
  1. <div class="content-wrapper">
  2.  
  3.     <section class="content container-fluid">
  4.         <div class="row">
  5.             <div class="col-12">
  6.                 <div class="box box-primary">
  7.                     <div class="box-header with-border">
  8.                         <h3 class="box-title">Add Category</h3>
  9.                     </div>
  10.  
  11.                     <form action="<?php echo base_url().'category/store'?>" method="POST" >
  12.                         <div class="box-body">
  13.                         <div class="form-group">
  14.                   <label>Category Name</label>
  15.                   <input type="text" class="form-control" name="name" placeholder="Enter Category Name">
  16.                 </div>
  17.                         </div>
  18.  
  19.                         <div class="form-group">
  20.                   <label>Staus Category</label>
  21.                   <select class="form-control" name="status">
  22.                     <option value="active">Active</option>
  23.                     <option value="inactive">Non Active</option>
  24.                   </select>
  25.                 </div>
  26.  
  27.                         <div class="box-footer">
  28.                 <button type="submit" class="btn btn-primary">Save</button>
  29.               </div>
  30.                     </form>
  31.                 </div>
  32.             </div>
  33.         </div>
  34.     </section>
  35. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement