CINXE.COM

Charity Times LeadNet Login

<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="assets/slick/slick.css"> <link rel="stylesheet" href="assets/slick/slick-theme.css"> <!-- icon css--> <link rel="stylesheet" href="assets/elagent-icon/style.css"> <link rel="stylesheet" href="assets/niceselectpicker/nice-select.css"> <link rel="stylesheet" href="assets/animation/animate.css"> <link rel="stylesheet" href="assets/mcustomscrollbar/jquery.mCustomScrollbar.min.css"> <link rel="stylesheet" href="css/style-main.css"> <link rel="stylesheet" href="css/responsive.css"> <title>Charity Times LeadNet Login</title> </head> <body data-scroll-animation="true"> <div class="body_wrapper"> <!--================All forum post Area =================--> <section class="bg-disable pb-100"> <div class="container"> <div class="row gy-lg-0 gy-4 pt-10"> <!--======= Right Sidebar =======--> <div class="col-lg-3"></div> <div class="col-lg-6 mt-5"> <div class="forum-right-sidebar-widget pl-lg-40 mt-50" style="padding-bottom:200px;"> <div class="single-widget-box login-widget"> <div class="text-center"> <img class="text-center" src="logos/leadnet-1.jpg" style="width:400px;"> </div> <div class="mb-3"><center><h1>Login</h1></center></div> <form action="#"> <span style="display:none;color:red;" id="accountnotauthenticatederror">* You have not confirmed your email address. Please refer to your welcome email.</span> <span style="display:none;color:red;" id="accountsuspendederror">* Your account has been suspended.</span> <span style="display:none;color:red;" id="emailerror">* Please enter your email address</span> <span style="display:none;color:red;" id="emailnotfounderror">* This email address is not in our records!</span> <input type="email" class="form-control mb-20" name="email" id="email" placeholder="Email Address"> <span style="display:none;color:red;" id="passworderror">* Please enter a password</span> <span style="display:none;color:red;" id="passwordincorrecterror">* The password you entered does not match our records</span> <input type="password" class="form-control mb-20" name="password" id="password" placeholder="Password"> <!--<div class="form-check mb-3"> <input class="form-check-input" type="checkbox" value="" id="flexCheckDefault"> <label class="form-check-label" for="flexCheckDefault"> Remember me </label> </div>--> <button type="button" class="doc_border_btn doc_border_btn_two w-100 btnLoginButton">Login</button> </form> </div> </div> </div> </div> </div> </section> <!--================End All forum post Area =================--> </div> <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="js/jquery-3.5.1.min.js"></script> <script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="js/pre-loader.js"></script> <script src="assets/slick/slick.min.js"></script> <script src="js/jquery.parallax-scroll.js"></script> <script src="assets/niceselectpicker/jquery.nice-select.min.js"></script> <script src="assets/wow/wow.min.js"></script> <script src="assets/mcustomscrollbar/jquery.mCustomScrollbar.concat.min.js"></script> <script src="js/plugins.js"></script> <script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script> <script src="js/main.js"></script> <script> $(document).keyup(function(event) { if (event.which === 13) { //alert('Enter is pressed!'); $(".btnLoginButton").click(); } }); $(".btnLoginButton").click(function(){ //alert('here'); var loginerror=0; var reg="6945-8630-2959-6934-2541"; $("#emailerror").hide(); $("#emailnotfounderror").hide(); $("#passworderror").hide(); $("#emailnotfounderror").hide(); $("#accountnotauthenticatederror").hide(); $("#accountsuspendederror").hide(); $("#passwordincorrecterror").hide(); var stremail=$('#email').val(); if (stremail=="") { $("#emailerror").show(); loginerror=1; } var strpassword=$('#password').val(); if (strpassword=="") { $("#passworderror").show(); loginerror=1; } if (loginerror==0){ var formData= {stremail: stremail, strpassword: strpassword, reg: reg}; $.ajax({ method: "POST", url: "func_login.php", data: formData }) .done(function( msg ) { //alert( "Data Returned: >" + msg + "<" ); if (msg=="1x0"){ $("#emailnotfounderror").show(); } if (msg=="2x0"){ $("#accountnotauthenticatederror").show(); } if (msg=="3x0"){ $("#accountsuspendederror").show(); } if (msg=="4x0"){ $("#passwordincorrecterror").show(); } if (msg=="10x0"){ window.location.replace("forum-topics.php"); } }); } }); </script> </body> </html>