Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mm/bmb/
Upload File :
Current File : /var/www/html/mmishra/mm/bmb/login.php

<?php
if ($user) { 
	echo "<br>
	You are already logged in using the ID ($user). Wishing to <a href='inner.php?logout=1'>logout</a> here.
	<br><br>
	If you chose the 'Remember me' option on the login page and no longer wish to get logged in
	automatically, click <a href='inner.php?logout=1&mode=forget'>Unremember me</a>.
	";
} else {
	echo "<br>
	Please login here using your login ID and password.<br>
	<table class='login'>
	<tr><td>Login ID:</td>
	<td><input type='text' name='txtID' size='20' value='$user'></td>
	</tr><tr><td>Password:</td>
	<td><input type='password' name='txtPWD' size='20' value=''></td>
	</tr><tr><td rowspan='2'><img src='images/login.jpg' width='70' height='50'></td>
	<td><input type='checkbox' name='chkRem' class='input'>&nbsp;Remember&nbsp;me</td>
	</tr><tr>
	<td><input type='submit' name='submit' value='LOGIN' style='width: 80px'></td>
	</tr>
	</table>
	<input type='hidden' name='login'><br>
	<script type='text/javascript'>
	document.form.txtID.focus();
	</script>";
}