48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<!-- Body page content -->
|
|
|
|
<div class="">
|
|
<div class="page-title">
|
|
|
|
<div class="title_left">
|
|
<h3>Add Module</h3>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="row">
|
|
<div class="x_panel">
|
|
<div class="x_title">
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="x_content">
|
|
<br />
|
|
<form id="" data-parsley-validate class="form-horizontal form-label-left" method="post"
|
|
action="<?php echo base_url();?>Business/create_add_module" enctype="multipart/form-data">
|
|
|
|
<input type="hidden" name="<?php echo $this->security->get_csrf_token_name();?>"
|
|
value="<?php echo $this->security->get_csrf_hash();?>">
|
|
|
|
|
|
<div class="item form-group">
|
|
<label class="control-label col-md-1 col-sm-1 " for="first-name">Create Module<a
|
|
style="color:red;">*</a> </label>
|
|
<div class="col-md-5 col-sm-5 ">
|
|
<input type="text" id="modules" name="modules" class="form-control" required>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col-md-5 col-sm-5 offset-md-1">
|
|
<a href="<?php echo base_url();?>Business/module_list" class="btn btn-secondary">Cancel</a>
|
|
<button type="submit" class="btn btn-success">Submit</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /Body page content --> |