CINXE.COM
Login to dashboard
<!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"> <meta name="robots" content="noindex"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Login to dashboard</title> <!-- Bootstrap --> <link href="/my/css/bootstrap.min.css?v=20062016" rel="stylesheet"> <link href="/my/css/cleantalk_my.min.css?v31_10_2024" rel="stylesheet"> <link href="/my/css/icons.css?v1" rel="stylesheet"> <script src="/jquery/jquery_3.6.1.min.js"></script> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <style type="text/css"> body { padding-top: 4em; } </style> <link href="/my/css/head.css?v15_05_2019" rel="stylesheet"> <link href="/my/css/font-awesome.min.css?v=30042020" rel="stylesheet"> <nav class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#uppermenu" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="my-logo" href="/my"> <svg class="my-logo__background"><use href="/assets/img/icons.svg?v27-08-24#icon-cleantalk-main-new"></use></svg> <span class="my-logo__services"> Anti-Spam </span> </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> </div><!-- /.container-fluid --> </nav> <div class="modal fade" id="readonly-modal" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-body text-center text-danger"> You have authorized by private link, access to Dashboard is restricted.<br> To get full access please authorize with login and password. </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <a href="/my/logout?authorize=1" class="btn btn-primary">Authorize</a> </div> </div> </div> </div> <script> var l_btn_prev = 'Back'; var l_btn_next = 'Next'; var l_learn_more = 'Learn more'; var l_rate_it = 'Rate us'; var l_renew_license = 'Renew license'; window.setTimeout(function(){ $('#subnav .mpopover').trigger('click'); var date = new Date(); date.setMonth(date.getMonth()+9); document.cookie = "dtour=1; path=/; expires=" + date.toUTCString(); }, 15000); </script> <script type="text/javascript" src="/my/js/dashboard-tour.js?v5"></script> <script> window.addEventListener('load', function () { $('[data-toggle="tooltip"]').tooltip(); $('.feature_request').tooltip({ template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner large" style="width: 500px; max-width: 500px"></div></div>' }); }); </script> <script> if (typeof user_id == "undefined") { var user_id = false; } </script> <script> window.addEventListener('load', function () { var avatarImg = $('#user_avatar'); if (avatarImg.length > 0 && avatarImg.hasClass('default')) { var src = $.cookie("ct_avatar_" + user_id); if (src) { avatarImg.attr('src', src); avatarImg.removeClass('default'); } else { $.ajax({ url: "/my/ajax", data: {action:'get_user_avatar'}, dataType: 'json' }).done(function(data) { if (data && data.avatar) { src = data.avatar; avatarImg.attr('src', src); avatarImg.removeClass('default'); $.cookie("ct_avatar_" + user_id, src); } }); } } }); </script> <div class="container-fluid"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> <br><br><br><br><br><br> </div> </div> <div class="row"> <div class="col-xs-1 col-sm-1 col-md-1 col-lg-1"> </div> <div class="col-xs-12 col-sm-12 col-md-5 col-lg-5" style="border-right: 1px solid #eee; padding-right: 30px;"> <form method="post" id="login_form" action="/my/session?back_url=support/open" autocomplete="on"> <div class="panel panel-default"> <div class="panel-heading center"> Login to dashboard </div> <div class="panel-body"> <div class="form-group"> <span class="gray">Use email or website name as login</span><br /> <input type="text" name="login" id="login" value="" tabindex="1" placeholder="Email or website address" class="form-control center fs13em" /> <span ></span> </div> <div class="form-group has-feedback"> <input type="password" name="password" id="password" value="" tabindex="2" class="form-control center fs13em" placeholder="Password" style="padding-right: 12px"/> <i class="glyphicon glyphicon-eye-close form-control-feedback" id="show_password" style="cursor: pointer; pointer-events: all"></i> <span class="gray">See your registration email for password</span> </div> <div class="center"> <input type="hidden" name="authtoken" value="8c52dc4f7e979fd8187b8c5be45b872f15a3d06a3ac3cb8d49ccbb606c3b70a3" /> <button type="submit" class="btn btn-primary">Login</button> </div> </div> </div> <input id="month" class="reset" type="hidden" name="month" value=""> <input id="year" class="reset" type="hidden" name="year" value=""> </form> <script> $(document).ready(function(){ var a; a=document.getElementById("year"); a.value=(new Date).getFullYear(); a=document.getElementById("month"); a.value=(new Date).getMonth(); if($('#login').val()){ $('#password').focus(); } $('#show_password').on('click', function () { var password_field = $('#password'); console.log('click'); if (password_field.attr('type') !== 'password') { password_field.attr('type', 'password'); $(this).addClass('glyphicon-eye-close'); $(this).removeClass('glyphicon-eye-open'); } else { password_field.attr('type', 'text'); $(this).addClass('glyphicon-eye-open'); $(this).removeClass('glyphicon-eye-close'); } }); }); </script> <div class="center"><a href="/my/reset_password">Forgot password?</a> | <a href="/my/reset_password?forgotten_email=1">Forgot email?</a> | <a href="/register">Create an account</a> </div> </div> <div class="col-xs-12 col-sm-12 col-md-5 col-lg-5" style="padding-left: 30px;"> <br> <b>All CleanTalk accounts include options:</b><br><br> <b>SpamFireWall</b> - to reduce a CPU usage.<br> SpamFireWall allows blocking the most active spam bots before they get access to website. It prevents loading of pages of web site by spam bots - so your server doesn't need to perform all scripts on these pages. <br><br> <b>Anti-Spam Logs</b> - to control Anti-Spam service.<br> You will have detailed statistics of all entering comments and logins. You can always be sure that there are no errors. <br><br> <b>Personal Blacklists</b> - to block users by IP's/email's/countries.<br> Personal balcklists are very flexible and powerful tool, you can block or allow IP address, email, mask or whole country. </div> <div class="col-xs-1 col-sm-1 col-md-1 col-lg-1"> </div> </div> </div> <div id="footer-margin"></div> <nav class="navbar navbar-default navbar-fixed-bottom" id="footernav" style="position:absolute;margin-bottom: -70px;display:block!important;bottom:0;"> <div class="container"> <div class="row" style="padding-bottom: 15px;"> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <a href="/">cleantalk.org</a><br> <a href="/my" title="Dashboard" rel="nofollow">Dashboard</a><br> <a href="/price-anti-spam" title="Pricing" rel="nofollow">Pricing</a><br> </div> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <a href="/help/api-cleantalk-all" title="API" rel="nofollow">API</a><br> <a href="/blacklists" title="Blacklists">Blacklists</a><br> <a href="https://blog.cleantalk.org/" title="Blog">Blog</a><br> </div> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <a href="/my/partners" title="Partners" rel="nofollow">Partners</a><br> <a href="https://www.amazon.com/dp/B0BRJZ3K55" title="Our merch" rel="nofollow" target="_blank">Our merch</a><br> <a href="/spam-stats" title="Spam Stats">Spam Stats</a><br><br> </div> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <a href="/help" title="Help">Help</a><br> <a href="/my/support" title="Support">Support</a><br> </div> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <a href="/about" title="About" rel="nofollow">About</a><br> <a href="/contact-us" title="Contacts">Contacts</a><br> <div class="dropup"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Policy <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="/publicoffer#privacy" rel="nofollow">Privacy policy</a></li> <li><a href="/publicoffer#refund" rel="nofollow">Refund policy</a></li> <li><a href="/publicoffer" rel="nofollow">License</a></li> </ul> </div> </div> <div class="col-md-2 col-xs-4 text-nowrap mt15"> <div class="dropdown" id="footer-lang" style="display: none;"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" id="footer-lang-toggle"> <img class="flag_icon" alt="" src="/images/langs/en.png" alt=""> EN<span class="caret"></span> </a> <ul class="dropdown-menu"> <li><a class="menulangs" id="en" href="?lang=en"><img class="flag_icon" src="/images/langs/en.png" alt="en" title="English - English"> EN</a></li> <li><a class="menulangs" id="ru" href="?lang=ru"><img class="flag_icon" src="/images/langs/ru.png" alt="ru" title="Russian - 袪褍褋褋泻懈泄"> RU</a></li> </ul> </div> </div> </div> </div> <style type="text/css">#footer-margin{ height: 38px;} .mt15{ margin-top: 15px; width: auto;} #footernav .row{ margin: 0 auto; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content;}@media (max-width: 620px){ #footer-margin { width: 160px;}}@media (max-width: 638px){ .mt15{ width: 160px;}} .mt15 a{ color: #777;}html{ height: 100%;} body{ min-height: 100%;position: relative;}</style> </nav> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="/my/js/bsdesign.js?v=01042016"></script> <script src="/js/jquery.cookie.js"></script> <script src="/js/svgxuse.min.js"></script> <script>var ip = '8.222.208.146';</script> <script src="/js/language-switch.js"></script> <script> window.addEventListener('load', function () { $('.menulangs').each(function () { var url = document.URL; if (url.indexOf('?') != -1) { url = url.split('?'); url[1] = url[1].split('&'); var params = []; for (var i = 0; i < url[1].length; i++) { var p = url[1][i].split('='); if (p[0] != 'lang') params.push(p[0] + '=' + p[1]); } if (params.length) { url = url[0] + '?' + params.join('&') + '&lang=' + $(this).attr('id'); } else { url = url[0] + '?lang=' + $(this).attr('id'); } } else { url += '?lang=' + $(this).attr('id'); } $(this).attr('href', url); }); }); </script> <script src="/js/get_timezone.min.js?v=8"></script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NZKWWB8" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>