https://asapfast.mypresswise.com/

Submitted URL:
https://asapfast.mypresswise.com/
Report Finished:

The outgoing links identified from the page

LinkText
https://www.presswise.com/

JavaScript Variables · 114 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring
$string
jQuerystring
get_system_pref_keystring
set_system_pref_keystring
disable_elementstring
enable_elementstring
enable_button_elementstring

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
	<title>My PressWise</title>
	<meta name="robots" content="noindex">
	<!--CSS -->
	<link rel="stylesheet" type="text/css" href="/lib/fontawesome-pro-6.2.0-web/css/all.min.css">
	<link rel="stylesheet" type="text/css" href="/lib/jquery/plugins/jquery-ui-themes-1.13.2/themes/smoothness/jquery-ui.min.css">
	<link rel="stylesheet" type="text/css" href="/lib/jquery/plugins/toast/jquery.toast.min.css">

	<link rel="stylesheet" type="text/css" href="/css/animate.css">
	<link rel="stylesheet" type="text/css" href="/css/shared/common.css?">
	<link rel="stylesheet" type="text/css" href="/css/site.clean.css?">
	<link rel="stylesheet" type="text/css" href="/css/site.css?">

	<!--SCRIPTS-->
	<script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-DDHK6WEKER&amp;l=dataLayer&amp;cx=c"></script><script type="text/javascript" src="/lib/jquery/jquery-3.7.1.min.js"></script>
	<script type="text/javascript" src="/lib/jquery/plugins/jquery-ui-1.13.2/jquery-ui.js"></script>
	<script type="text/javascript" src="/lib/jquery/plugins/toast/jquery.toast.min.js"></script>
	<script type="text/javascript" src="/js/shared/lib.form.tools.js?1722045919"></script>

	<!--ICONS-->
	<link rel="mask-icon" href="PW-mask-icon.svg" color="#444444">
	<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-87479314-1"></script>
<script>
	window.dataLayer = window.dataLayer || [];
	function gtag(){dataLayer.push(arguments);}
	gtag('js', new Date());

	gtag('config', 'UA-87479314-1');
</script>
	<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
	<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
	<link rel="apple-touch-icon" href="/img/pw-apple-home-icon.png">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=0.80, maximum-scale=0.80, user-scalable=0">
	<script type="text/javascript">
		// show login form in top frame
		if (top != self) {
			window.top.location.href = location;
		}

		//check to see if browser is IE or Edge
		function GetBrowser()
		{
			var sAgent = window.navigator.userAgent;

			//check to see if browser is IE or Edge
			var Idx = sAgent.indexOf("MSIE");
			var result = "No Results";

			if (Idx > 0) {
				// IE 10 or older => return version number
				result = parseInt(sAgent.substring(msie + 5, sAgent.indexOf('.', msie)), 10);
			}

			var trident = sAgent.indexOf('Trident/');
			if (trident > 0) {
				// IE 11 => return version number
				var rv = sAgent.indexOf('rv:');
				result = parseInt(sAgent.substring(rv + 3, sAgent.indexOf('.', rv)), 10);
			}

			var edge = sAgent.indexOf('Edge/');
			if (edge > 0) {
				// Edge (IE 12+) => return version number
				result = parseInt(sAgent.substring(edge + 5, sAgent.indexOf('.', edge)), 10);
			}
			return result;
		}

		//check is cookies are enabled
		function are_cookies_enabled()
		{
			var cookieEnabled = (navigator.cookieEnabled) ? true : false;

			if (typeof navigator.cookieEnabled == "undefined" && !cookieEnabled) {
				document.cookie="testcookie";
				cookieEnabled = (document.cookie.indexOf("testcookie") != -1) ? true : false;
			}
			return (cookieEnabled);
		}

		var areCookies = are_cookies_enabled();
		if (areCookies) {
			$('#areCookies').hide();
		} else {
			$('#areCookies').show();
		}

		//cookies for login alerts
		function setCookie(cname, cvalue, exdays) {
			var d = new Date();
			d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
			var expires = "expires="+d.toUTCString();
			document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/;secure;SameSite=Strict";
		}

		function getCookie(cname) {
			var name = cname + "=";
			var ca = document.cookie.split(';');
			for(var i = 0; i < ca.length; i++) {
				var c = ca[i];
				while (c.charAt(0) == ' ') {
					c = c.substring(1);
				}
				if (c.indexOf(name) == 0) {
					return c.substring(name.length, c.length);
				}
			}
			return "";
		}

		function checkCookie(cname, cvalue, exdays, ele) {
			var cookieName = getCookie(cname);
			if (cookieName != "") {
				//delete cookie if set when clicking on the checkbox twice
				document.cookie = cname + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;';
			} else {
				setCookie(cname, cvalue, exdays);
				$(ele).hide();
			}
		}
	</script>
	<style>
		body.loginform h1,
		body.loginform a.logo {
			display: block;
			text-align: center;
		}
		body.loginform {
			text-align: center;
		}
		body.loginform div.container {
			text-align: left;
			width: 30em;
			margin: 0 auto;
		}
		.tblBlackPad {
			padding: 12px 0;
			text-align: center;
			margin: 0 auto;
			border-radius: 10px;
			-webkit-border-radius: 10px;
			background: #eee;
			background: -webkit-gradient(linear, 0% 0%, 0% 50%, from(#fff), to(#eee));
			background: -moz-linear-gradient(#fff, #eee 50%);
			-webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 1);
			box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 1);
		}
		.tblBlack th,
		.tblBlack td.tblBlack,
		.tblBlackPad th,
		.tblBlackPad td.tblBlackPad {
			padding: 1px 7px 1px 7px;
			margin: 1px;
			vertical-align: top;
		}
		.tblBlack th,
		.tblBlackPad th {
			color: #000000;
			font-size: 90%;
		}
		.tblBlack td {
			color: #000000;
		}
		.tblBlackPad td {
			color: #000000;
			padding: 1px 7px 1px 7px;
		}
		input#username, input#password {
			font-size: 14pt !important;
			width: 310px;
			padding: 10px;
			border: 1px solid #999;
			border-radius: 5px;
			-webkit-border-radius: 5px;
		}
		#loginBtn {
			font-size: 18px !important;
			line-height: 2.00625;
			font-weight: 500;
			letter-spacing: normal;
			background-color: #2189db;
			background: -webkit-linear-gradient(#42a1ec, #0070c9);
			background: linear-gradient(#42a1ec, #0070c9);
			border: 1px solid #07c !important;
			border-radius: 4px;
			color: #fff;
			cursor: pointer;
			display: inline-block;
			text-align: center;
			text-shadow: 0 1px 1px rgba(28, 115, 184, 0.64);
			white-space: nowrap;
			font-family: "Myriad Set Pro", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
			height: 37px;
			width: 332px;
		}
		#loginBtn:hover {
			background-color: #3392de;
			background: -webkit-linear-gradient(#51a9ee, #147bcd) !important;
			background: linear-gradient(#51a9ee, #147bcd) !important;
			border-color: #1482d0 !important;
			text-decoration: none;
		}
		footer {
			color: #fff;
			font-family: arial, sans-serif;
			font-size: 12px;
			margin-top: 10px;
			width: 100%;
			text-align: center;
			background: none;
			position: relative;
		}
		input[type=text], input[type=password], textarea {
			-webkit-transition: all 0.30s ease-in-out;
			-moz-transition: all 0.30s ease-in-out;
			-ms-transition: all 0.30s ease-in-out;
			-o-transition: all 0.30s ease-in-out;
			outline: none;
			padding: 3px 0px 3px 3px;
			margin: 5px 1px 3px 0px;
			border: 1px solid #DDDDDD;
		}
		input[type=text]:focus, input[type=password]:focus, textarea:focus {
			box-shadow: 0 0 5px rgba(81, 203, 238, 1);
			padding: 3px 0px 3px 3px;
			margin: 5px 1px 3px 0px;
			border: 1px solid rgba(81, 203, 238, 1);
		}
		/* Background Image */
		body {
			background: #343435;
		}
		/* iPhone [portrait + landscape] */
		@media only screen and (max-device-width: 480px) {
			button.jqButton { width:346px; }
			#usernameLabel, td#passwordLabel { display: none; }
			input#username, input#password { width: 300px; padding: 15px; }
		}
		input:-webkit-autofill {
			-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
			-webkit-text-fill-color: #333;
		}

		input:-webkit-autofill:focus {
			-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
			-webkit-text-fill-color: #333;
		}
	</style>
</head>
<body class="loginform">
<div class="container ui-corner-all animated" style="background-color: transparent;">
	<a href="https://www.presswise.com/" target="_blank" class="logo animated"><img src="/img/shared/login-logo.png" alt="PressWise Logo" name="imgLogo" width="350" border="0" id="imgLogo" style="margin: 20px 0;"></a>
	<script>
		//check if showbrowseralert cookie exists
		var cookieStatus = getCookie("showbrowseralert");
		if (GetBrowser() > 0 && cookieStatus != "true" && are_cookies_enabled()) {
			var html = '<div id="recBrowsers" class="jq-toast-single jq-has-icon jq-icon-warning" style="width: auto;"><strong>For the optimal experience, use Chrome, Brave, Firefox, or Safari!</strong><br>Don\'t show again: <input type="checkbox" onclick="checkCookie(\'showbrowseralert\', true, 365, \'#recBrowsers\');"></div>';
			document.write(html);
		}
	</script>
				<div id="areCookies" class="jq-toast-single jq-has-icon jq-icon-info" style="display: none;width: auto;">Cookies must be enabled past this point. <a href="login-requirements.php">Click for details.</a></div>
	<noscript>
	<div class="jq-toast-single jq-has-icon jq-icon-info" style="width: auto;">Javascript must be enabled past this point. <a href="login-requirements.php">Click for details.</a>
	</div>
	</noscript>
	<form id="login_form" name="login_form" method="post" action="/" target="_top" class="login">
	<div class="tblBlackPad animated  fast">
	<table width="100%" border="0" cellpadding="0" cellspacing="0">
			<tbody><tr>
				<td width="100%">
					<input name="login_user" type="text" id="username" value="" maxlength="60" placeholder="Username" class="text ui-widget-content ui-corner-all" autocomplete="off">
				</td>
			</tr>
			<tr>
				<td>
					<input name="login_pass" type="password" id="password" value="" maxlength="60" placeholder="Password" class="text ui-widget-content ui-corner-all" autocomplete="off">
				</td>
			</tr>
						<tr>
				<td>
					<button id="loginBtn" class="jqButton" name="submit" type="submit" value="Go"><span>Login</span></button>
				</td>
			</tr>
			<tr>
				<td>
					Remember me <input type="checkbox" name="login_remember" value="Y">
				</td>
			</tr>
	</tbody></table>
	</div>
	</form>
		<footer>©2024 PressWise™ is a trademark of Datatech SmartSoft, Inc.</footer>
	<script>
		var uname = document.forms['login_form'].elements['username'];
		var pword = document.forms['login_form'].elements['password'];
		var loginError = "";
		if(loginError == "") {
			setTimeout(function () {
				if (uname.value == '') {
					uname.focus();
				} else {
					pword.focus();
				}
			}, 100);
		}
		//Hide URL bar on iPhone
		setTimeout(function () {
			window.scrollTo(0, 1);
		}, 1000);

		$("#loginBtn").on('click', function() {
			if($("#username").val() == "" || $("#password").val() == "") {
				if($(".tblBlackPad").hasClass("wobble")) {
					$(".tblBlackPad").removeClass("wobble");
					setTimeout(function () {
						$(".tblBlackPad").addClass("wobble");
					}, 100)
				} else {
					$(".tblBlackPad").addClass("wobble");
				}
				return false;
			} else {
				$('<div class="buttonLoader"></div>').insertBefore('#loginBtn span');
				$("#loginBtn span").hide();
				$(this).css('pointer-events', 'none');
			}
		});
	</script>

	

</div></body></html>