| Current Path : /var/www/html/llcfapp/public/ |
| Current File : /var/www/html/llcfapp/public/spear.php |
<?php require_once('header.php');?>
<div class="container container-margin">
<div class="mx-auto col-12 col-md-12 col-lg-12">
<form method="post" id="spear_form">
<input type="hidden" name="id" id="id" value="<?=(isset($_GET['id']) && !empty($_GET['id'])) ? $_GET['id'] : "-1";?>">
<fieldset>
<h2 class="form-heading">SPEAR Program</h2>
<hr class="colorgraph">
<div class=" row form-group" title="School Information Section">
<div class="col-lg-2 col-md-2 col-sm-12">
<label>SEMIS Code</label>
<input value="<?php if(isset($_GET['semis_code']) && !empty($_GET['semis_code'])){echo $_GET['semis_code'];}?>" type="text" name="semis_code" id="semis_code" class="form-control input-lg" placeholder="Enter SEMIS Code">
</div>
<div class="col-lg-3 col-md-3 col-sm-12">
<label>School Name</label>
<input type="text" name="school_name" id="school_name" class="form-control input-lg" placeholder="Enter School Name">
</div>
<div class="col-lg-3 col-md-3 col-sm-12">
<label>Address</label>
<textarea name="address" id="address" class="form-control input-lg" placeholder="Please type here"></textarea>
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>HM Name</label>
<input type="text" name="hm_name" id="hm_name" class="form-control input-lg" placeholder="Enter HM Name">
</div>
<div class="col-lg-2 col-md-3 col-sm-12">
<label>HM Contact #</label>
<input type="text" name="hm_contact_num" id="hm_contact_num" class="form-control input-lg" placeholder="Enter HM Contact">
</div>
</div>
<div class="row form-group" title="School Information Section">
<div class="col-lg-3 col-md-3 col-sm-12">
<label>HM WhatsApp #</label>
<input type="text" name="hm_whatsapp_num" id="hm_whatsapp_num" class="form-control input-lg" placeholder="HM WhatsApp Number">
</div>
<div class="col-lg-3 col-md-3 col-sm-12">
<label>Emergency Number</label>
<input type="text" name="emerg_num" id="emerg_num" class="form-control input-lg" placeholder="Enter Emergency Number">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Teaching</label>
<input type="text" name="teacher_count" id="teacher_count" class="form-control input-lg" placeholder="Teacher Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Non Teaching</label>
<input type="text" name="non_teacher_count" id="non_teacher_count" class="form-control input-lg" placeholder="Non Teacher Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Medium</label>
<select name="medium" id="medium" class="form-control input-lg select-placeholder">
<option value="">Select Medium</option>
<option>English</option>
<option>Urdu</option>
<option>Sindhi</option>
</select>
</div>
</div>
<hr class="colorgraph thin">
<div class="row form-group" title="Student Information Section">
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Total Students</label>
<input readonly type="text" name="stu_count" id="stu_count" value="0" class="form-control input-lg" placeholder="Student Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Class 1</label>
<input type="text" name="class1" id="class1" class="form-control input-lg class_stu" placeholder="Student Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Class 2</label>
<input type="text" name="class2" id="class2" class="form-control input-lg class_stu" placeholder="Student Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Class 3</label>
<input type="text" name="class3" id="class3" class="form-control input-lg class_stu" placeholder="Student Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Class 4</label>
<input type="text" name="class4" id="class4" class="form-control input-lg class_stu" placeholder="Student Count">
</div>
<div class="col-lg-2 col-md-2 col-sm-12">
<label>Class 5</label>
<input type="text" name="class5" id="class5" class="form-control input-lg class_stu" placeholder="Student Count">
</div>
</div>
<hr class="colorgraph thin">
<div class="row form-group">
<div class="col-lg-4 col-md-4 col-sm-12">
<input type="submit" id="spear_submit" class="btn btn-lg btn-primary btn-block llcf-pri" value="Save">
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<input type="button" id="reset" class="btn btn-lg btn-danger btn-block" value="Reset">
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<a class="btn btn-lg btn-secondary btn-block" href="<?=Config::getConfig('spearGridRedirect')?>">School List</a>
</div>
</div>
</fieldset>
</form>
</div>
</div>
<?php require_once('footer.php');?>