0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.138.105.128


Current Path : /var/www/html/ibm/kus/
Upload File :
Current File : /var/www/html/ibm/kus/downloadverifieddoc.html

<div class="row clearfix">
    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
      <div class="card">
        <div class="header">
          <h2>
            Verified Documents
          </h2>
        </div>
        <div class="body" id="app_form_data">
          <form class="form-horizontal">
            <div class="row clearfix">
                <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label">
                  <label class="pull-left" for="daterange">Verified Date Range</label>
                </div>
                <div class="col-sm-4 col-md-2 daterange">
                  <div class="form-group">
                    <div class="form-line">
                      <input
                        type="text"
                        class="form-control date"
                        id="fromdate"
                        placeholder="dd/mm/yyyy"
                      />
                    </div>
                  </div>
                </div>
                <div class="col-sm-4 col-md-2 daterange m-l-5">
                  <div class="form-group">
                    <div class="form-line">
                      <input
                        type="text"
                        class="form-control date"
                        id="todate"
                        placeholder="dd/mm/yyyy"
                      />
                    </div>
                  </div>
                </div>
              </div>
              <div class="row clearfix">
                <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label">
                  <label class="pull-left" class="pull-left" for="RollnumberRange"
                    >Reg. No. Range</label
                  >
                </div>
                <div class="col-sm-4 col-md-2">
                  <div class="form-group">
                    <div class="form-line">
                      <input
                        type="text"
                        id="fromroll"
                        class="form-control"
                        placeholder="Reg. No. From"
                        value="0"
                      />
                    </div>
                  </div>
                </div>
                <div class="col-sm-4 col-md-2 m-l-5">
                  <div class="form-group">
                    <div class="form-line">
                      <input
                        type="text"
                        id="toroll"
                        class="form-control"
                        placeholder="Reg. No. to"
                        value="Z"
                      />
                    </div>
                  </div>
                </div>
              </div>
              <div class="row clearfix">
                <div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label">
                  <label class="pull-left" for="Application For"
                    >Application For</label
                  >
                </div>
                <div class="col-sm-4 col-md-4">
                  <select
                    id="S4"
                    class="form-control show-tick"
                    style="margin-left: -15px; width: 84%;"
                    
                  >
                  </select>
                </div>
              </div>                      
                <div
                  class="col-lg-offset-2 col-md-offset-2 col-sm-offset-4 col-xs-offset-5"
                >
                  <button
                    type="button"
                    class="btn btn-primary waves-effect m-l-10"
                    onclick="getlist()"
                  >
                    GO
                  </button>
                </div>
              </div>
            </form>
          </div>
        </div>
      </div>
    </div>
    
    <div class="row" id="statusDetl">
      <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
        <div class="card">
          <div class="header">
            <h2>
              Verification Details
            </h2>
            <!-- <button
              type="button"
              class="btn btn-primary waves-effect m-l-10 m-t--20 pull-right"
              onclick="exportPdfReport()"
            >
              EXPORT
            </button> -->
          </div>
    
          <div class="body">
            <table
              id="mainTable"
              class="table table-condensed table-bordered table-striped table-hover"
              
            >
              <thead style="background-color:#184F76 ; color:#fff">
                <tr>
                  <th style="text-align:center" >Sl. No.</th>
                  <th style="text-align:center" >App. No.</th>
                  <th style="text-align:center" >App. Date.</th>
                  <th style="text-align:center" >Reg. No.</th>
                  <th style="text-align:center" >Student Name</th>
                  <th style="text-align:center" >Category</th>                  
                  <th style="text-align:center" >Amount</th>
                  <th style="text-align:center" >Email-Id</th>
                  <th style="text-align:center" >Mobile Number</th>
                  <th style="text-align:center" >Verified User</th>
                  <th style="text-align:center" >Verified Date</th>
                  <th style="text-align:center" >Download</th>
                </tr>
              </thead>
              <tbody id="trecords">
                <tr></tr>
              </tbody>
            </table>
          </div>
        </div>
      </div>
    </div>
    
    <script type="text/javascript">
      $("#statusDetl").addClass("hidden");
      var $demoMaskedInput = $(".daterange");
    
      //Date
      $demoMaskedInput
        .find(".date")
        .inputmask("dd/mm/yyyy", { placeholder: "__/__/____" });
    
      $("#fromdate").val(getDate());
      $("#todate").val(getDate());
    
      $("#S4").keypress(function(e) {
        var key = e.which;
        if (key == 13) {
          // the enter key code
          getlist();
        }
      });
    
      $(document).ready(function() {
        var inputs = $("input, select").keypress(function(e) {
          if (e.which == 13) {
            e.preventDefault();
            var nextInput = inputs.get(inputs.index(this) + 1);
            if (nextInput) {
              nextInput.focus();
            }
          }
        });
      });
    </script>