Sindbad~EG File Manager
<script type="text/javascript">
$(function () {
var limit = 200;
$('textarea[id$=txtTitle]').keyup(function () {
var len = $(this).val().length;
if (len > limit) {
// this.value = this.value.substring(0, limit);
}
$("#spnTitle").text(limit - $(this).val().length);
});
});
$(function () {
var limit = 2000;
$('textarea[id$=txtSynopsis]').keyup(function () {
var len = $(this).val().length;
if (len > limit) {
// this.value = this.value.substring(0, limit);
}
$("#spnSynopsis").text(limit - $(this).val().length);
});
});
</script>
{{ Form::open(array('url' => 'arc/store','role'=>'form','id'=>'form_s2')) }}
{{ Form::hidden('hdnId', isset($arc)? $arc->abs_id : 0,array('id'=>'hdnId')) }}
{{ Form::hidden('hdnStep', '2',array('id'=>'hdnStep')) }}
{{ Form::hidden('hdnIsNext', '1',array('id'=>'hdnIsNext')) }}
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 ">
<div class="alert alert-success" style="display:none">
</div>
<div class="alert alert-danger" style="display:none">
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 nopadding margin10">
<div class="step completedstep">STEP 1 </div>
<div class="step activestep">STEP 2 </div>
<div class="step">STEP 3 </div>
<div class="step">STEP 4 </div>
<!-- <div class="step">STEP 5 </div> -->
</div>
<!--step 2 details -->
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label> Name of Institution : <sup>*</sup></label>
{{ Form::text('txtInstitute',$arc->institution,array('maxLength'=>'150','class' => 'form-control' , 'id' => 'txtInstitute')) }}
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label> Name of University : <sup>*</sup></label>
{{ Form::text('txtUniversity',$arc->university,array('maxLength'=>'150','class' => 'form-control' , 'id' => 'txtUniversity')) }}
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label> MCI State : <sup>*</sup></label>
{{ Form::text('txtMCIstate',$arc->mci_status,array('maxLength'=>'100','class' => 'form-control' , 'id' => 'txtMCIstate')) }}
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label> Year of Passing : <sup>*</sup></label>
{{ Form::text('txtYearOfPassing',$arc->year_of_passing,array('maxLength'=>'100','class' => 'form-control' , 'id' => 'txtYearOfPassing')) }}
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label> Name of Guide : <sup>*</sup></label>
{{ Form::text('txtGuide',$arc->guide,array('maxLength'=>'150','class' => 'form-control' , 'id' => 'txtGuide')) }}
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label> Name of Co-Guide : <sup>*</sup></label>
{{ Form::text('txtCoGuide',$arc->co_guide,array('maxLength'=>'150','class' => 'form-control' , 'id' => 'txtCoGuide')) }}
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label> Name of HOD : <sup>*</sup></label>
{{ Form::text('txtDepartment',$arc->hod,array('maxLength'=>'40','class' => 'form-control' , 'id' => 'txtDepartment')) }}
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<label>Thesis Title (not exceeding 200 characters) <sup>*</sup> <span id="spnTitle" class="red">200</span> characters left. </label>
{{ Form::textarea('txtTitle',$arc->title,array('class' => '', 'id' => 'txtTitle' , 'placeholder' => 'Title','rows' => 2)) }}
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<label>Abstract (not exceeding 2000 characters) <sup>*</sup> <span id="spnSynopsis" class="red">2000</span> characters left.
<span class="red">Structured abstract comprise of Objective, Design, Methodology, Outcome measures, Statistical analysis, Results and Conclusions.Do not mention your name or affiliations in your abstract.</span></label>
{{ Form::textarea('txtSynopsis',$arc->synopsis,array('class' => '', 'id' => 'txtSynopsis' , 'placeholder' => 'Synopsis')) }}
</div>
</div>
<!--End step 2 details -->
<div class="row margin30">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 page-left">
<input type="button" value="Previous" id ="btnPrevious_s2" class="btn primary button-large"
onclick="Move(2,0)">
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 page-right">
<input type="button" value="Next" id ="btnNext_s2" class="btn primary button-large pull-right"
onclick="Move(2,1)">
</div>
</div>
{{ Form::close() }}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists