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 : 18.223.159.143


Current Path : /var/www/html/bcu/orms_stop/admin/html_modules/
Upload File :
Current File : /var/www/html/bcu/orms_stop/admin/html_modules/edit_marks_detalis.html

<div
  style="
    border: 1px solid black;
    background-color: skyblue;
    height: 35px;
    text-align: center;
  "
>
  <h4><b>Edit Marks Entry</b></h4>
</div>
<button
  class="btn btn-success"
  style="margin-left: 10px; position: relative; bottom: 30px"
  onclick="goBack()"
  type="button"
>
  <i class="fa fa-bar-chart-o">&nbsp;Back</i>
</button>

<div
  class=""
  style="border: 1px solid black; padding-left: 10px; width: 100%; height: 100%"
>
  <div class="input" style="margin-top: 10px">
    Application No:
    <input type="text" value="" id="txtapplication_no" disabled /> Name:
    <input type="text" value="" id="txtname" disabled /> Degree:
    <input type="text" value="" id="txtdegree" disabled />
  </div>
  <br />
  <div style="margin-top: 10px">
    <table class="table table-bordered">
      <thead class="thead-dark">
        <tr>
          <th>Description</th>
          <th>Max Marks</th>
          <th>Screening Marks</th>
          <th>Actualmarks</th>
          <th>Remarks</th>
        </tr>
      </thead>
      <tr>
        <td>UG</td>
        <td>15</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="ugactualmarks"
            oninput="conditionUg()"
          /><label id="lblug" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>PG</td>
        <td>25</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="pgactualmarks"
            oninput="conditionPg()"
          /><label id="lblpg" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>Ph.D/M.Phil</td>
        <td>30</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="phdactualmarks"
            oninput="conditionPhd()"
          /><label id="lblphd" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>NET-JRF/NET/SLET</td>
        <td>7</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="netactualmarks"
            oninput="conditionNet()"
          /><label id="lblnet" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>Teaching</td>
        <td>10</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="examactualmarks"
            oninput="conditionExam()"
          /><label id="lblexam" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>Research</td>
        <td>10</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="researchactualmarks"
            oninput="conditionsResearch()"
          /><label id="lblresearch" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td>Awards</td>
        <td>3</td>
        <td></td>
        <td>
          <input
            type="text"
            value=""
            id="awardsactualmarks"
            oninput="awardsMarks()"
          /><label id="lblawards" style="color: red"></label>
        </td>
        <td></td>
      </tr>
      <tr>
        <td colspan="3">
          <button
            class="btn btn-success"
            style="margin-left: 4px; position: relative; top: 1px"
            onclick="saveBtn();"
            type="button"
          >
            <i class="fa fa-bar-chart-o">&nbsp;Save</i>
          </button>
        </td>

        <td colspan="2">
          <div style="display: flex; flex-direction: row">
            <label style="font-weight: bold">Total</label>
            <input
              style="margin-left: 5px"
              type="text"
              value=""
              id="txttotal"
              disabled
            />

            <label style="margin-left: 5px">70% of Actual Marks</label>
            <input
              style="margin-left: 5px"
              type="text"
              value=""
              id="txtper"
              disabled
            />
            <label style="margin-left: 5px">Remarks</label>
            <input style="margin-left: 5px" type="text" value="" id="remarks" />
          </div>
          <div>
            <label style="margin-top: 5px">Perfomance VIVA</label>
            <input
              style="margin-top: 5px"
              type="text"
              value=""
              id="viva"
              oninput="viva()"
            />
            <label style="margin-left: 5px">Teaching Presentation</label>
            <input
              style="margin-left: 5px"
              type="text"
              value=""
              id="presentation"
              oninput="presentation()"
            />
            <label style="margin-left: 5px">Final Total</label>
            <input
              style="margin-left: 5px"
              type="text"
              value=""
              id="ftotal"
              disabled
            />
          </div>
        </td>
      </tr>
    </table>

    <div id="tabledata"></div>
  </div>
</div>