https://steenbroekland.recourse.nl/

Submitted URL:
https://steenbroekland.recourse.nl/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 6 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
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
$function
jQueryfunction
contextPathstring

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="nl"><!-- BEGIN HEAD --><head>
    <meta charset="utf-8">
    <title>Inloggen</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <meta content="Recourse" name="description">
    <meta content="Recourse BV" name="author">
    <meta content="Steenbroekland" name="tenant">
    <script src="/dep/jquery-3.7.1.min.js" type="text/javascript"></script>

    <link href="/dep/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
    <link href="/dep/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css">
    <link href="/dep/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
    <link href="/dep/login.css" rel="stylesheet" type="text/css">

    <link href="/dep/components-rounded.css" id="style_components" rel="stylesheet" type="text/css">
    <link href="/dep/plugins.css" rel="stylesheet" type="text/css">
    <link href="/dep/layout.css" rel="stylesheet" type="text/css">
    <link href="/dep/red-sunglo.css" rel="stylesheet" type="text/css" id="style_color">

    <link href="/res/recourse.css" rel="stylesheet" type="text/css">
    <link href="/res/utility.css" rel="stylesheet" type="text/css">
    <link href="/res/rc_coding.css" rel="stylesheet" type="text/css">

    <link rel="icon" href="/favicon.ico">
</head>
<!-- END HEAD -->
<!-- BEGIN BODY -->
<body class="login">
<div class="rc_coding"></div>
<!-- BEGIN SIDEBAR TOGGLER BUTTON -->
<div class="menu-toggler sidebar-toggler">
</div>
<!-- END SIDEBAR TOGGLER BUTTON -->
<!-- BEGIN LOGO -->
<div class="logo">
    <a href="/"><img src="/d/RC_MEDIA/tenants/pF76oVRyRIea_lZk-VLm3A/logo" alt="logo" class="custom rclogo"></a>
    
</div>
<!-- END LOGO -->
<!-- BEGIN LOGIN -->
<div class="content login-utility">
	<!-- BEGIN LOGIN FORM -->
	<form class="login-form" action="/" method="post">
		<h3 class="form-title title">Inloggen</h3>
		
		<div class="form-group">
			<!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
			<label class="control-label visible-ie8 visible-ie9">E-mailadres</label>
			<input id="usernameField" class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="E-mailadres" name="disp_user">
		</div>
		<div class="form-group">
			<label class="control-label visible-ie8 visible-ie9">Wachtwoord</label>
			<input id="passwordField" class="form-control form-control-solid placeholder-no-fix" type="password" autocomplete="off" placeholder="Wachtwoord" name="disp_pass">
		</div>
		<div class="form-actions">
			<button type="submit" class="btn red-sunglo">Inloggen</button>
			<a id="forget-password" class="forget-password">Wachtwoord vergeten?</a>
		</div>
		
	</form>
	<!-- END LOGIN FORM -->
	<!-- BEGIN FORGOT PASSWORD FORM -->
	<form class="forget-form" action="#" method="post">
		<h3 class="title">Wachtwoord vergeten?</h3>
		<div class="alert alert-danger display-hide" id="alert-RESET_GENERIC_ERROR"><span>Het wijzigen van je wachtwoord is niet gelukt. Probeer het later nogmaals.</span></div>
		<p>
			 Vul je e-mailadres in om je wachtwoord te wijzigen.
		</p>
		<div class="form-group">
			<input class="form-control placeholder-no-fix" type="text" autocomplete="off" placeholder="E-mailadres" id="reset-email">
		</div>
		<div class="form-actions">
			<button type="button" id="back-btn" class="btn grey-cascade">Terug</button>
			<button type="submit" class="btn red-sunglo pull-right">Versturen</button>
		</div>
	</form>
	<!-- END FORGOT PASSWORD FORM -->
	<!-- BEGIN FORGOT SUCCESS -->
	<div id="reset_success" class="display-hide">
		<h3 class="title">Wachtwoord wijzigen</h3>
		<div class="alert alert-success">
			<strong>Er is een e-mail verstuurd.</strong>
			<p>
				Je ontvangt een e-mail met een link waarmee je je wachtwoord kan wijzigen als het e-mailadres wat je hebt ingevuld bekend is bij ons.
			</p>
		</div>
	</div>
	<!-- END FORGOT SUCCESS -->
	
	<!-- END REGISTRATION SUCCESS -->
	
</div>
<script nonce="">
var contextPath = "";
</script>
<script nonce="">
$(document).ready(function() {
	if ($("#usernameField").length > 0) {
		$("#usernameField").focus();
	} else if ($("#twoFactorField").length > 0) {
		$("#twoFactorField").focus();
	}

	$("#forget-password").click(function() {
		$(".login-form").hide();
		$(".forget-form").show();
	});

	$("#back-btn").click(function() {
		$(".login-form").show();
		$(".forget-form").hide();
	});
	
	$(".forget-form").submit(function(event) {
		event.preventDefault();

		if ($("#reset-email").val() === "") {
			return;
		}

		// App.blockUI({boxed: true});
		$(".alert").hide();
		
		$.ajax({
			url: contextPath + "/requestPasswordReset",
			type: "POST",
			data: {
				email: $("#reset-email").val()
			},
			dataType: "json",
			success: function(data) {
				if (data["status"] === "ok") {
					$(".forget-form").hide();
					$("#reset_success").show();
					$("#reset_success .alert").show();
					// App.unblockUI();
				} else {
					// App.unblockUI();
				}
			},
			error: function() {
				$("#alert-RESET_GENERIC_ERROR").show();
				// App.unblockUI();
			}
		});
	});
});
</script>

<!-- END LOGIN -->
<div class="copyright">
    ©2015-2024 Recourse BV
</div>
<div id="rcMask"></div>
<script src="/dep/jquery.blockui.min.js" type="text/javascript"></script>
<script src="/dep/jquery-validation/js/jquery.validate.min.js" type="text/javascript"></script>

</body></html>