www.saverisk.com
Open in
urlscan Pro
3.0.164.97
Public Scan
Submitted URL: https://www.saverisk.com/redirectpage.aspx?path=0990971161011031111141210610830971181010821051151070950820971161051101030...
Effective URL: https://www.saverisk.com/flogin.aspx
Submission: On September 27 via api from IN — Scanned from SG
Effective URL: https://www.saverisk.com/flogin.aspx
Submission: On September 27 via api from IN — Scanned from SG
Form analysis
1 forms found in the DOMPOST ./flogin.aspx
<form method="post" action="./flogin.aspx" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="KshQ/btaEk7fOxCBsg9n9LDUH5RxQjkYr7U/DUB94tyM4L/5j52EhPtn1EQQ7AILvVaTDSm0c2PVN4tPhv2wBJPhyWliznZoS/ecIBXDLtA=">
</div>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="8DCF64F6">
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
value="q8s0sfbFtP3noPA9dT0JixCwVJ54+2lrDX+sbsGY7D/xW33UT7WQJCts6IeroDR98yt2Ix5vKAgpvfKSU1E2/Uu98CZriig2n+kD9vH70/Cls58nA1KKoAfS2+cuEJINGQyk/D921GJ6aWjYdNun2xU3ep3hDIrl4M33dt6hiLNqKj5x61tul6INvdQCUn0CBoVuRohBjY3vYCmMGjvAsWhZTLxQJ6PrphNJ35WotVlI/og+sGOwfoZpHvUl2UwmaXqUM91k71kk0wDXoH7kg7AIHXdd6K8Ao7m9uC+UStQ=">
</div>
<link href="https://www.saverisk.com/css/searchcss.css" rel="stylesheet" type="text/css">
<link href="https://www.saverisk.com/css/logincss.css" rel="stylesheet" type="text/css">
<div style="left: 0; position: absolute; top: 0; width: 100%;">
<input type="hidden" name="hdnmobilenumber" id="hdnmobilenumber">
<div class="noprint" id="divmaster">
<div id="divpin">
<div id="divgeneratepin">
<div class="title" style="text-transform: unset;"> Seems you are using a different device to login. Please enter your contact number. </div>
<div class="number">
<input type="text" id="txtmobilenumber" placeholder="Enter your otp number">
</div>
<div class="button">
<a id="btn_generateotp" style="cursor: pointer;">Submit OTP</a>
</div>
<div class="msg" id="otpmsg2">
</div>
</div>
<div id="diventerpin">
<div class="title">
<h6>Login Assist to access your account</h6>
</div>
<div class="number">
<input type="text" id="txtpinno" value="" placeholder="" style="text-align: center; padding-left: 0;">
</div>
<div class="button">
<a id="btn_pinsingin" style="cursor: pointer; width: 100px;">Sign In</a>
</div>
<div id="otpmsg" class="msg" style="height: 20px;">
</div>
<span id="counterspn"></span>
<a style="float: left; cursor: pointer; text-decoration: none; color: #124298; font-weight: bold; cursor: pointer;" target="_blank" href="https://www.saverisk.com/#contact-section">Contact us</a>
<div style="float: right; position: relative;">
<span id="timer" style="color: darkblue;">Resend in <span id="time">60</span> Seconds </span>
<a id="btn_resend_otp" onclick="ResendOtp()" style="color: #124298; font-weight: bold; display: none; cursor: pointer;">Resend</a>
</div>
<input type="hidden" name="hdn_otp" id="hdn_otp">
</div>
<div id="div_division_section" style="display: none;">
<table style="margin: auto;">
<tbody>
<tr>
<td colspan="3">
<p style="font-size: 13px; font-weight: bold; color: #444;"> Please Confirm/Select your Group </p>
</td>
</tr>
<tr>
<td>
<span style="font-size: 13px; color: #575479;">Group - </span>
</td>
<td>
<div id="div_filters">
</div>
</td>
<td> <input type="button" value="Save" onclick="savedata()" class="editbtn" id="btnsave">
</td>
</tr>
<tr id="divmsg_division" style="display: none;">
<td colspan="3">
<p style="margin: 0; padding: 0; padding-top: 10px;">
<span id="msg" style="color: darkred;"></span>
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div style="text-align: center; display: none;" id="divloadpin">
</div>
<div style="text-align: center; display: none;" id="divloader">
<img src="images/ajax-loader-black.gif">
</div>
</div>
<script type="text/javascript">
//btn_resend_otp
function ResendOtp() {
$('#divloader').show();
$.ajax({
type: "POST",
url: prefixurl + 'flogin.aspx/otpresent',
data: JSON.stringify({
key: encodeCustomURL($("#hdn_otp").val())
}),
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function(data) {
//alert('1');
if (data.d == "logout") {
window.location = prefixurl + "flogin.aspx";
} else if (data.d == "alreadyloggedin") {
window.location = prefixurl + "flogin.aspx?msg=6";
} else if (data.d == "sessionexpire") {
$('#otpmsg').html("Your session has been expired. Please try again.");
$('#divloader').hide();
} else if (data.d == "disabled") {
$("#btn_resend_otp").attr('onclick', '');
$("#btn_resend_otp").css("opacity", "0.6");
$("#btn_resend_otp").css("color", "gray");
$('#divloader').hide();
} else {
$('#otpmsg').html(data.d);
otpcountdown();
$('#divloader').hide();
}
}
});
}
//5 oct 2020
function otpcountdown() {
$("#timer").html('Resend in <span id="time">59</span> Seconds');
$("#btn_resend_otp").hide();
var counter = 5;
var countershow = 3;
var interval = setInterval(function() {
counter--;
// Display 'counter' wherever you want to display it.
if (counter <= 0) {
clearInterval(interval);
$('#timer').html("");
$("#btn_resend_otp").show();
return;
} else {
$('#time').text(counter);
if (counter == countershow) {
$('#otpmsg').html('');
}
// console.log("Timer --> " + counter);
}
}, 1000);
}
function GetCounter() {
var counter = 45;
var interval = setInterval(function() {
counter--;
//alert(counter);
$('#counterspn').html('after ' + counter + ' seconds');
if (counter == 0) {
// Display a login box
$('#btn_resendotp').show();
$('#btn_resendotp').css('color', '#19499f');
$('#btn_resendotp').css('cursor', 'pointer');
$('#counterspn').html('');
clearInterval(interval);
}
}, 1000);
}
</script>
<div id="divsrheader" class="topdivshadow" style="border-bottom: 1px solid rgb(193, 193, 193); background-color: rgb(255, 255, 255); height: 43px; margin-bottom: 30px; padding-left: 20px; padding-top: 4px; display: block;">
<a href="https://www.saverisk.com/index.htm">
<img src="https://www.saverisk.com/images/flatlogo.png" style="width: 212px;"></a>
</div>
<div id="divmsg_univ">
</div>
<table id="tblsignin" class="boxshadowlogin" border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<td style="width: 100%; padding: 15px 35px 16px;">
<input type="hidden" id="binfo" name="binfo" value="PDF Viewer|undefined~Chrome PDF Viewer|undefined~Chromium PDF Viewer|undefined~Microsoft Edge PDF Viewer|undefined~WebKit built-in PDF|undefined~">
<input type="hidden" id="finfo" name="finfo">
<input type="hidden" id="fontinfo" name="fontinfo">
<table border="0" cellpadding="0" cellspacing="0" style="width: 308px; margin-bottom: 20px;">
<tbody>
<tr>
<td style="color: #4a7bd3; font-family: Segoe UI !important; font-size: 18px; font-weight: 500; line-height: 48px; width: 100%;">Sign in your Account <img src="https://www.saverisk.com/images/Cross2.png" onclick="hidelogin();"
style="cursor: pointer; float: right; margin-right: -31px; margin-top: -9px;">
</td>
</tr>
<tr>
<td style="width: 100%;">
<div>
<input name="username" type="text" id="username" class="login" placeholder="Username" autocomplete="off" maxlength="100" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div>
<input name="password" type="password" id="password" class="login" placeholder="Password" autocomplete="off" maxlength="50" style="border: 1px solid #dddddd; margin-top: 8px; padding: 9px 10px; width: 286px;">
</div>
<div>
<a class="btnsubmit" href="https://www.saverisk.com/trialrequest.aspx" target="_blank" style="line-height: 28px;">Request Trial</a> <a id="btnlogin" class="btnsubmit" style="line-height: 28px; cursor: pointer;">Sign In</a>
</div>
<div style="max-width: 305px; overflow: hidden; word-wrap: break-word;">
<span id="msgdiv" style="color: Red;"></span>
<span id="lblmsg" class="pl-16" style="color: Red; margin-left: 2px; color: #da0b0b; margin-left: 2px; font-size: 12px; font-weight: normal;"></span>
</div>
</td>
</tr>
<tr>
<td style="color: #124298; font-family: Segoe UI !important; font-size: 12px; width: 100%; padding-top: 20px;">
<b>Reach Us:</b> +91 98-73-589450 / +91 98-18-645289 <br>
<b>Email Id:</b> sales@saverisk.com
</td>
</tr>
</tbody>
</table>
<table style="width: 100%; text-align: center; border-top: 1px solid #c1c1c1; padding-top: 12px;">
<tbody>
<tr>
<td style="width: 50%; text-align: left;">
<a id="a_SSOLogin" style="color: #124298; font-weight: bold; cursor: pointer; text-align: left;">SSO Login
</a>
</td>
<td style="width: 50%; text-align: right;">
<a id="a_forgotpwd" style="color: #124298; font-weight: bold; cursor: pointer; text-align: right;">Reset password
</a>
</td>
</tr>
<tr id="ssoOptionEnable" style="display: none;">
<td colspan="2">
<div>
<input name="sso_email" type="text" id="sso_email" placeholder="Email" autocomplete="off" maxlength="100" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div style="text-align: left; line-height: 3;">
<span id="lblssomsg" class="pl-16" style="color: Red; margin-left: 2px; color: #da0b0b; margin-left: 2px; font-size: 12px; font-weight: normal;"></span>
<a id="btnssoLogin" class="btnsubmit" style="line-height: 28px; cursor: pointer;">SSO Login</a>
</div>
</td>
</tr>
</tbody>
</table>
<div id="div_popuppassword" style="margin-top: 5px; display: none;">
<div style="text-transform: uppercase; text-align: center;">
<span id="plsFill_field">Please fill below field</span>
<span id="forgetpopup" style="float: right; cursor: pointer;">X</span>
</div>
<div id="divforgetpwd">
<input name="txtfpass" type="text" id="txtfpass" rt="" maxlength="100" class="form-control" value="" required="" title="Please enter your username" placeholder="Please enter your username" autocomplete="off"
style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 375px; background: #fdfdfd;">
<a id="btn_retrive_pass" class="retrive_pass">Reset Password</a>
<div id="lbl_pass_msg" class="pl-16"></div>
</div>
<div id="divresetpwdotp" style="display: none;">
<input name="txtfotp" type="text" id="txtfotp" maxlength="5" class="form-control" value="" required="" title="Please enter OTP" placeholder="Please enter OTP" autocomplete="off"
style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 375px; background: #fdfdfd;">
<a id="btn_f_otp" class="retrive_pass">Confirm</a>
<div id="lbl_pass_msg21" class="pl-16"></div>
</div>
<div id="divcreatenewpwd" style="display: none;">
<div>
<input name="txtoldpass" type="password" id="txtoldpass" maxlength="50" class="form-control" value="" required="" title="Please enter old password" placeholder="Please enter old password"
style="margin-bottom: 6px; display: none; border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 375px; background: #fdfdfd;" autocomplete="off">
</div>
<div>
<input name="txtnewpass" type="password" id="txtnewpass" maxlength="50" pattern="(?=.*\d)(?=.*[!@#$%^&*])(?=.*[a-z])(?=.*[A-Z]).{8,}" class="form-control" value="" required="" title="Please enter new password"
placeholder="Please enter new password" style="margin-bottom: 6px; border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 375px; background: #fdfdfd;" autocomplete="off">
</div>
<div>
<input name="txtconfirmpass" type="password" id="txtconfirmpass" maxlength="50" pattern="(?=.*\d)(?=.*[!@#$%^&*])(?=.*[a-z])(?=.*[A-Z]).{8,}" class="form-control" value="" required="" title="Please enter confirm password"
placeholder="Please enter confirm password" autocomplete="off" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 375px; background: #fdfdfd;">
</div>
<div>
<a id="btn_createnew_pass" class="retrive_pass" style="margin-top: -33px !important;">Submit</a>
<div id="lbl_pass_msg2" class="pl-16"></div>
</div>
<div id="div_instructions" style="clear: both;">
<h3 style="font-size: 14px; padding-top: 10px;">Password must contain the following:</h3>
<p id="letter" class="invalid" style="font-size: 14px; margin-bottom: 0.2rem !important; font-weight: 400 !important; margin-top: 0 !important;">A <b>lowercase</b> letter</p>
<p id="capital" class="invalid" style="font-size: 14px; margin-bottom: 0.2rem !important; font-weight: 400 !important; margin-top: 0 !important;">A <b>capital (uppercase)</b> letter</p>
<p id="number" class="invalid" style="font-size: 14px; margin-bottom: 0.2rem !important; font-weight: 400 !important; margin-top: 0 !important;">A <b>number</b></p>
<p id="length" class="invalid" style="font-size: 14px; margin-bottom: 0.2rem !important; font-weight: 400 !important; margin-top: 0 !important;">Minimum <b>8 characters</b></p>
<p id="specialchar" class="invalid" style="font-size: 14px; margin-bottom: 0.2rem !important; font-weight: 400 !important; margin-top: 0 !important;">A <b>special character</b></p>
</div>
</div>
</div>
<div id="divchangepassword" style="display: none; margin-top: 15px;">
<div style="color: #EA4335; text-transform: uppercase; text-align: center;"> Please fill below fields </div>
<div>
<input name="txtcurrentusername" type="text" id="txtcurrentusername" class="txtcpwd" placeholder="Username" autocomplete="off" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div>
<input name="txtcurrentpassword" type="password" id="txtcurrentpassword" class="txtcpwd" placeholder="Current Password" autocomplete="off" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div>
<input name="txtnewpassowrd" type="password" id="txtnewpassowrd" class="txtcpwd" placeholder="New Password" autocomplete="off" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div>
<input name="txtconfirmpassowrd" type="password" id="txtconfirmpassowrd" class="txtcpwd" placeholder="Confirm Password" autocomplete="off" style="border: 1px solid #dddddd; margin-top: 5px; padding: 9px 10px; width: 286px;">
</div>
<div>
<a id="btnchangepwd" class="btnsubmit" style="line-height: 28px; cursor: pointer; width: 117px;">Change Passoword</a>
</div>
<div id="div_msg_cpwd">
</div>
</div>
</td>
</tr>
</tbody>
</table>
<span id="lbl"></span>
<span id="Label1"></span>
</div>
</div>
</form>
Text Content
Seems you are using a different device to login. Please enter your contact number. Submit OTP LOGIN ASSIST TO ACCESS YOUR ACCOUNT Sign In Contact us Resend in 60 Seconds Resend Please Confirm/Select your Group Group - Sign in your Account Request Trial Sign In Reach Us: +91 98-73-589450 / +91 98-18-645289 Email Id: sales@saverisk.com SSO Login Reset password SSO Login Please fill below field X Reset Password Confirm Submit PASSWORD MUST CONTAIN THE FOLLOWING: A lowercase letter A capital (uppercase) letter A number Minimum 8 characters A special character Please fill below fields Change Passoword