https://career.hurl.net.in/aadhar_verify.php

Submitted URL:
https://career.hurl.net.in/aadhar_verify.php
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 7 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head><style>
#identification{
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#btn_gen_otp {
  width: 20%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#btn_gen_otp:hover {
  background-color: #45a049;
}

#top_div {
    margin: 0 auto;
    margin-top:10%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    width:50%;
  
}

#submit_btn{
  background-color: #0456aa;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}
</style>
</head><body>
    
    <div id="top_div">
        <h3 style="text-align:center;">Verify Your Aadhar</h3>
        
        <div>
            <form action="" method="POST" autocomplete="off" onsubmit="return funvalid(this)">
                <input type="text" style="width:250px;display:none;font-size:20px;border:none;color:green; padding: 12px 20px;" id="aadhar_validation" value="Validated">
                <br><br>
                <label for="identification" style="font-weight:bold">Aadhar Number</label><br>
                <input type="number" id="identification" name="identification" placeholder="Your Aadhar" required="" autocomplete="off">
                <input type="button" id="btn_gen_otp" onclick="fun_aadhar_otp1()" value="Generate OTP">
                <input type="text" style="width:200px;display:none" id="aadhar_client_id">

                <div id="div_otp_verify" style="display:none;clear:both;  margin-top:10px">
                    <span style="font-weight:bold"> OTP:  </span><br>
                    <input type="text" style="width:44%;background:#FCFDB7; padding: 12px 20px;" id="aadhar_otp">
                    <input type="button" id="btn__otp_verify" value="Verify" style="background:#F1AC2F;padding: 14px 20px;" onclick="fun_aadhar_otp2()">
                </div>   
                
                <input type="hidden" name="full_name" value="">
                <input type="hidden" name="email" value="">
                <input type="hidden" name="mobile_num" value="">
                <input type="hidden" name="address" value="">
                <input type="hidden" name="job_fee" value="">
                <input type="hidden" name="applicant_regnum" value="">
                <input type="hidden" name="aadhar_api_response" id="aadhar_api_response">
                <br>
               <div><input type="submit" id="submit_btn" name="submit_btn" value="SUBMIT"></div> 
            </form>
            <iframe name="myframe" id="myframe" style="display:none"> </iframe>
        </div>
    </div>
    <script>
        function funvalid(obj)
        {  
        
            ddd = document.getElementById('aadhar_validation');
            if(ddd.style.display=='none' )
            {
                alert("Aadhar Number should be verified");
                return false;
            }
            return true;
        }
    </script>
    
    <script>
        function fun_aadhar_otp1()
        {
            aadhar_no = document.getElementById('identification').value;
            // alert(aadhar_no);
            ttt=aadhar_no.length;
            if(ttt!=12)
            {
                alert("Please enter Valid Aadhar Number");
                
            }
            else
                
                document.getElementById('myframe').src = "aadhar_otp1.php?id="+aadhar_no;
        }
    </script>
    <script>
        function fun_aadhar_otp2()
        {
            aadhar_client_id = document.getElementById('aadhar_client_id').value;
            aadhar_otp = document.getElementById('aadhar_otp').value;
            
            document.getElementById('myframe').src = "aadhar_otp2.php?id="+aadhar_client_id+"&otp="+aadhar_otp;

        }
    </script>
    

</body></html>