File Manager
Viewing File: invalidlogin.php
<?php
require('db.php')
?>
<html>
<!-- Added by HTTrack -->
<!-- Mirrored from www.bitminingexchange.com/login by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 07 Apr 2021 02:46:31 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<title>Login | <?= $siteName ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- font-family: 'Open Sans', sans-serif; -->
<link href="styles/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="styles/custom.css" rel="stylesheet" type="text/css">
<link href="styles/default.css" rel="stylesheet" type="text/css">
<link href="styles/tab.css" rel="stylesheet" type="text/css">
<link rel="icon" href="<?= htmlspecialchars($siteUrl . str_replace('..', '', $siteIcon)) ?>">
<script src="styles/jquery.js" type='text/javascript'></script>
<script src="styles/setting2.js" type='text/javascript'></script>
<script src="styles/tab.js" type="text/javascript"></script>
<script src="styles/bootstrap.min.js" type="text/javascript"></script>
</head>
<body class="loginarea">
<div class="">
<a href="#"> </a>
</div>
<script language=javascript>
function checkform() {
if (document.mainform.username.value=='') {
alert("Please type your username!");
document.mainform.username.focus();
return false;
}
if (document.mainform.password.value=='') {
alert("Please type your password!");
document.mainform.password.focus();
return false;
}
return true;
}
</script>
<div class="form-container-wrap">
<div class="form-container login">
<form class="form-horizontal" method=post onsubmit="return checkform()" name="regform" action="processlogin">
<table width="100%" border="0" cellpadding="4" cellspacing="4">
<tr>
<td><span class="none">
<font color='red' size="4"><b>Invalid username or password</b></font>
</span></td>
</tr>
<tr>
<td><span class="user">
<input type=text name="username" class="inpts" size="30" autofocus="autofocus" placeholder="Username" style="width:400px;" required/>
</span></td>
</tr>
<tr>
<td><span class="password">
<input type=password name="password" class="inpts" size="30" placeholder="Password" style="width:400px;" required/>
</span></td>
</tr>
<tr>
<td><input type=submit value="Login" class=sbmt></td>
</tr>
<tr>
<td height="45" align="center" valign="bottom"><a href="passreset" class="small_text"><b>Forget your password reset it here.</b>
</a></td>
</tr>
</table>
</form>
</div>
</div>
<div class="loginfooter">© <?= date('Y') ." ". $siteName ?> All Rights Reserved.</div>
</body>
<!-- Mirrored from www.bitminingexchange.com/login by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 07 Apr 2021 02:46:44 GMT -->
</html>