https://velousads.com/login.php

Submitted URL:
https://velousads.com/login.php
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 4 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 lang="en"><head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>VAS : VELOUS ADS</title>
	
	
<link rel="stylesheet" href="css/wallet.css">
	<link rel="stylesheet" href="css/bootstrap.min.css">
	<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

		<script type="text/javascript">
 
 function login_check()
 {
	

	if(document.loginform.username.value == "" )
	{
		alert("Enter Member ID");
		document.loginform.username.focus();
		return false;
	}
	
	else if(document.loginform.pass.value == "")
	{
		alert("Enter Password ");
		document.loginform.pass.focus();
		return false;
	}
	
	else
		return true;
	
 }
 
 
 </script>

</head>
<body>
	<div class="wallet-container text-center">
		
		
		
		
		<div id="container1"><div id="container2">
		
		<br> <br>

		<div class="amount-box text-center">
			<img src="images/vel_logo.png" alt="wallet" style="width:200px;">
		</div>

		 <form id="loginform" name="loginform" class="form" action="loginchk.php" method="post" onsubmit="return login_check();">
                  

			<div class="input-container">
			<i class="fa fa-mobile icon"></i>
			<input class="input-field" type="text" placeholder="Mobile No" name="username" id="username">
		  </div>

		  <div class="input-container">
			<i class="fa fa-key icon"></i>
			<input class="input-field" type="password" placeholder="Password" name="pass" id="pass">
		  </div>
			
			
			<div class="btn-group">
			<input type="submit" id="submit" name="submit" value="Login" class="btn btn-outline-light"> 
			
			
			
			</div>
			
			
			 </form>
			</div></div>
			
			

			</div>

</body></html>