File: /home/durgeshpandey215/www/zeeroprice.skilladders.com/loginquick.php
<?
//form token below
$token = md5(uniqid(rand(), true));
$_SESSION['token'] = $token;
?>
<div class="w3-row">
<div class="w3-col m3">
</div>
<div class="w3-col m6 w3-card w3-white">
<div class="w3-blue w3-container w3-padding">Login</div>
<br/>
<form action="<?=HTTP_SERVER;?>postdata.php" method="post" id="commonform" class=" w3-padding">
<!--following 2 lines prevent chrome to autofil saved username n password -->
<input style="display:none">
<input type="password" style="display:none">
<input type="tel" name="mobno" placeholder="Mobile Number" value="" class="w3-input required w3-animate-left" title="" maxlength="10"/>
<input type="password" name="ipassword" placeholder="Password" id="newpassword" class="w3-input w3-animate-right"/>
<input type="hidden" name="token" value="<?=$token?>"/>
<input type="checkbox" name="cookiechk" value="1" checked/> Remember me.
<center>
<input type="submit" name="isubmit" id="submitbutton" class="w3-btn w3-pink" value="Login"/>
<br/><br/>
<a href="<?=HTTP_SERVER;?>forgotpassword.php" title="Click here to retrieve your password" class="link">Forgot Password?</a> |
<a href="<?=HTTP_SERVER;?>register.php" title="Click here to register" class="link">New User? Register Now</a>
<br/><br/></center>
</form>
</div>
<div class="w3-col m3">
</div>
</div>