sitewise.tetrad.com
Open in
urlscan Pro
3.232.65.133
Public Scan
Submitted URL: http://sitewise.tetrad.com/
Effective URL: https://sitewise.tetrad.com/account/logon
Submission: On February 27 via manual from IN — Scanned from DE
Effective URL: https://sitewise.tetrad.com/account/logon
Submission: On February 27 via manual from IN — Scanned from DE
Form analysis
1 forms found in the DOMPOST /Account/LogOnJ
<form id="logonform" action="/Account/LogOnJ" method="post" autocomplete="off" siq_id="autopick_5544">
<input name="__RequestVerificationToken" type="hidden" value="WDBDydtWYCXiZrKfSfpfzEXKjDWO_k2IwL8LranfBcA_EKibEH574d1Vryl4znRvrGiEwYsthKRT8xuItGQxlDHAvZf5BBgkOrO1UkwiwPg1">
<div id="incompatible" style="display:none;">Internet Explorer 7 is incompatible with Sitewise Online. Please upgrade to a newer version.</div>
<input type="hidden" id="a" name="a" value="">
<div class="fieldbox">
<div style="width: 180px; font-size: 1.1em;">Username</div>
<input autocapitalize="none" autocorrect="off" style="width: 98%" id="username" name="username" type="text" value="">
</div>
<div class="fieldbox" style="margin-top: .25em;">
<div style="width: 180px; font-size: 1.1em;">Password</div>
<input id="password" name="password" style="width: 98%" type="password" value="">
</div>
<div id="trialMessage">Forgot your password? <a href="/account/forgot/" class="green">Reset</a> your password.</div>
<div id="trialMessage">Don't have an account? <a href="http://www.tetrad.com/contact/" target="_new" class="green">Contact us</a> for more information.</div>
<div id="errorMessage" style="display:none;">The username or password provided is incorrect.</div>
<br>
<div id="errorMessage2" style="display:none; color: red; font-size: 0.95em;">
</div>
<div style="margin-top: .75em; float: right;">
<button id="accountLogon" type="button" style="padding: 8px; font-size: 1.1em;" class="defineButton ui-state-default ui-corner-all">Sign In</button>
</div>
<div class="clear">
<input type="hidden" id="returnUrl" name="returnUrl">
<script type="text/javascript">
var pco = {};
pco.appSettings = {};
var ctr = 0;
$(document).ready(function() {
$zoho.salesiq.ready = function() {
$zoho.salesiq.floatwindow.onlinetitle('Chat with an Analyst');
$zoho.salesiq.floatwindow.offlinetitle('We\'re offline right now');
$zoho.salesiq.visitor.email($('#username').val());
$zoho.salesiq.visitor.name($('#username').val());
}
returnUrl = getParameterByName('ReturnUrl');
if (returnUrl != null && returnUrl.length > 1) {
$('#errorMessage2').show();
}
var clickEvent = 'click'; // ('ontouchstart' in document.documentElement) ? 'touchstart': 'click';
var appSettings = localStorage.getItem('settings');
if (appSettings != null) {
try {
var stored = JSON.parse(appSettings);
pco.appSettings = stored;
$('#username').val(pco.appSettings.account.username);
//$('#password').val(pco.appSettings.account.password);
} catch (e) {}
}
$('body').unbind('keypress').bind('keypress', function(e) {
if (e.keyCode == 13) {
pcoSignIn();
}
});
$('#accountLogon').unbind(clickEvent).bind(clickEvent, function() {
pcoSignIn();
});
$('#settingsSave').unbind(clickEvent).bind(clickEvent, function() {
pco.appSettings.studyArea.circle.outer = $('#ciRings').val();
});
var form = $($("#logonform")[0]);
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader('__RequestVerificationToken', '' + $('input[name=__RequestVerificationToken]').val());
}
});
form.submit(function() {
var data = form.serialize();
$.post(form.attr("action"), data, function(result, status) {
$('#loginSpinner').hide();
if (result == 'success') {
returnUrl = getParameterByName('ReturnUrl');
if (returnUrl != null && returnUrl.toLowerCase().startsWith('/portal')) {
window.location = returnUrl;
} else {
window.location = "/main?id=" + '3.2.0' + '.' + '97' + ((getParameterByName('latitude', returnUrl) != null && getParameterByName('latitude', returnUrl).length > 0) ? ('&latitude=' + getParameterByName('latitude',
returnUrl)) : '') + ((getParameterByName('longitude', returnUrl) != null && getParameterByName('longitude', returnUrl).length > 0) ? ('&longitude=' + getParameterByName('longitude', returnUrl)) : '') + ((
getParameterByName('z', returnUrl) != null && getParameterByName('z', returnUrl).length > 0) ? ('&z=' + getParameterByName('z', returnUrl)) : '');
}
} else {
ctr++;
if (ctr == 3) {
$zoho.salesiq.visitor.customaction("logon");
}
returnUrl = getParameterByName('ReturnUrl');
$('#errorMessage').text(result.indexOf(':') > 0 ? result.substring(6) : result).show();
if (returnUrl != null && returnUrl.length > 1) {
$('#errorMessage2').show();
}
$('#password').val('');
}
}, "json").fail(function(e) {
$('#loginSpinner').hide();
$('#errorMessage').text('An error occured during login. Please try again.').show();
$('#password').val('');
});
return false;
});
});
function getURLParameter(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
function getParameterByName(name, url) {
if (!url) {
url = window.location.href;
}
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
function pcoSignIn() {
pco.appSettings.account = {
username: $('#username').val(),
password: $('#password').val()
};
if (pco.appSettings.account == null) {
return;
}
if (pco.appSettings.account.password != null && pco.appSettings.account.password.trim().length == 0) {
return;
}
$('#loginSpinner').show();
$('#username').val(pco.appSettings.account.username);
var form = $($("#logonform")[0]);
form.trigger('submit');
}
</script>
<div class="copypane">
<div class="copyright"> © 2023 Tetrad Computer Applications Inc.<br>All Rights Reserved. </div>
</div>
</div>
</form>
Text Content
Sitewise Online 3.2.0 Internet Explorer 7 is incompatible with Sitewise Online. Please upgrade to a newer version. Username Password Forgot your password? Reset your password. Don't have an account? Contact us for more information. The username or password provided is incorrect. Sign In © 2023 Tetrad Computer Applications Inc. All Rights Reserved.