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.117.73.72


Current Path : /var/www/html/college/html_modules/
Upload File :
Current File : /var/www/html/college/html_modules/upload_photo_demo.html

<style type="text/css">
  .textInputEnabled {
    width: 250px;
    height: 25px;
    padding: 3px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  /* .inputTextarea {
          width: 100%;
          padding: 3px;
          font-size: 14px;
          line-height: 1.42857143;
          color: #000;
          background-color: #fff;
          background-image: none;
          border: 1px solid #ccc;
          border-radius: 4px;
        } */
</style>

<script type="text/javascript">
  $(function () {
    $("#tabs").tabs();
  });
  $(function () {
    $("#sub_tabs").tabs();
  });
</script>

<div id="tabs">
  <ul style="height: 20px">
    <!-- <li><a href="#create">Teacher Freeze</a></li> -->
  </ul>
  <table class="TableBorder" cellpadding="8" cellspacing="2" width="100%">
    <tbody>
      <tr>
        <td class="topPadding3" align="left" width="30%">Register No:</td>
        <td>
          <input
            name="Regester no"
            id="regno"
            maxlength="250"
            class="textInputEnabled"
            type="text"
          />
        </td>
      </tr>

      <tr>
        <td class="topPadding3" align="left">Name:</td>
        <td class="topPadding3">
          <input
            name="name"
            id="uname"
            maxlength="250"
            class="textInputEnabled"
            type="text"
          />
        </td>
      </tr>
      <tr>
        <td class="topPadding3" align="left">Degree:</td>
        <td class="topPadding3">
          <input
            name="degre"
            id="degree"
            class="textInputEnabled"
            type="text"
          />
        </td>
      </tr>
      <tr>
        <td class="topPadding3" align="left">Photo:</td>
        <td class="topPadding3">
          <img
            id="photouploads"
            src="images/default_photo.jpg"
            onchange="uploadPhoto()"
            style="
              width: 150px;
              height: 180px;
              border: 1px solid black;
              background-size: cover;
            "
          />
          <br />
          <br />
          <input
            id="photoupload"
            type="file"
            name="photoupload"
            onchange="photoURL(this)"
            accept="image/*"
          />

          <span
            style="
              border: 1px solid;
              background-color: skyblue;
              font-size: 15px;
              border-radius: 4px;
            "
            id="uploadbtn1"
            onclick="uploadPhoto()"
            >Upload Image</span
          >
        </td>
      </tr>

      <tr>
        <td class="topPadding3" align="left">ID Proof:</td>
        <td class="topPadding3">
          <img
            id="iduploads"
            src="images/default_photo.jpg"
            onchange="uploadIDProof()"
            style="
              width: 150px;
              height: 180px;
              border: 1px solid black;
              background-size: cover;
            "
          />
          <br />
          <br />
          <input
            id="idupload"
            type="file"
            name="idupload"
            onchange="idURL(this)"
            accept="image/*"
          />

          <button id="uploadbtn2" onclick="uploadIDProof()">
            Upload ID Proof
          </button>
        </td>
      </tr>
    </tbody>
  </table>
  <input type="button" id="save" value="Save" onclick="savedata()" />
</div>