www.xtrm.com
Open in
urlscan Pro
2a02:e980:1ff::82
Public Scan
URL:
https://www.xtrm.com/web/ELogin.aspx
Submission: On June 06 via manual from US — Scanned from DE
Submission: On June 06 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMName: aspnetForm — POST ./ELogin.aspx
<form name="aspnetForm" method="post" action="./ELogin.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUKMTM3MTA4MDE0MA8WAh4TVmFsaWRhdGVSZXF1ZXN0TW9kZQIBFgJmD2QWBAICDxYCHgNzcmMFP2h0dHBzOi8vd3d3Lnh0cm0uY29tL1dlYi9hc3NldHMvL2ltZy9sb2dvL3h0cm0tbG9nby5zdmc/dmVyPTE1N2QCAw9kFgICAw9kFgICAg8WAh4JaW5uZXJodG1sZWRk9dPKrHqTwXZgWQsZhsDGSr0L9cOOxCzX04EL5F0CL5Y=">
</div>
<div>
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="05092012">
</div>
<input type="hidden" name="ctl00$hdnLoginID" id="ctl00_hdnLoginID">
<section id="about" style="margin: 0; padding: 0;" class="inner-pages">
<input type="hidden" name="ctl00$MainContent$hdNavUrl" id="ctl00_MainContent_hdNavUrl">
<!-- <div id="google-map" style="background:url(images/map.png); background-repeat:no-repeat;"></div>-->
<section class="container common-inner">
<div class="text-center">
<div class="card card-container col-md-4 col-md-offset-4 login-box">
<img id="profile-img" class="profile-img-card" src="https://www.xtrm.com/web/Common/Images/avatar_2x.png">
<p id="profile-name" class="profile-name-card"></p>
<span id="spnMessageInfo"></span>
<div class="form-signin" id="login-view">
<span id="reauth-email" class="reauth-email"></span>
<div class="form__group p-relative">
<input type="text" class="form__input" placeholder="Email address" id="inputEmail" autocomplete="off" required="">
<label for="name" class="form__label"></label>
</div>
<div class="form__group p-relative">
<span class="input-group" id="show_hide_password">
<input type="password" class="form__input" placeholder="Password" id="inputPassword" required="" autocomplete="xtrm-do-not-populate">
<!-- <label for="name" class="form__label"></label>-->
<div class="input-group-addon">
<a><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
</div>
</span>
<a><i class="fa fa-close" aria-hidden="true" id="log-close"></i></a>
</div>
<!--<div class="form__group">
<input type="password" class="form__input" placeholder="Password" id="inputPassword" required="" />
<label for="name" class="form__label"></label>
</div>-->
<div id="remember" class="checkbox" style="display: none">
<label>
<input value="remember-me" type="checkbox"> Remember me </label>
</div>
<button class="btn btn-lg btn-primary btn-block btn-signin digital-create-button g-font-size-15 g-py-15 g-mt-30 " type="submit">Sign in</button>
</div>
<div class="submit-Loader loader-hide">
<div>
<div class="outerCircle"></div>
<div class="innerCircle"></div>
<div class="icon"></div>
</div>
</div>
<!-- /form -->
<a href="Forgot.aspx" id="ctl00_MainContent_hyplnkForgot" class="forgot-password g-pt-20">Forgot password? </a>
</div>
</div>
<div class="divMessage card card-container col-md-4 col-md-offset-4">
<div id="ctl00_MainContent_divMessageContent" class="divInnerMessage"></div>
</div>
</section>
</section>
<script>
//$(document).ready(function () {
// $(".submit-Loader").hide();
//});
$(document).ready(function() {
var MessageContent = $('.divInnerMessage').html().toString();
if (MessageContent !== "") {
var data = MessageContent.split('|');
if (data[1] == '1') {
var div = "<strong>" + data[0] + "</strong>" + "<p style='text-align:justify; line-height: 1.3;'>If this address is associated with an XTRM account, you will receive an email message with a password reset link. " +
"We send the email instantly. When you receive the email, you can reset your password through the link. " +
"If you do not receive the email after five minutes please check your junk mail folder. If you still have not received the email and believe an account " +
"to be held at this email address, please ask your IT to make sure <a href='mailto:xtrmusa@xtrmmail.com'>xtrmusa@xtrmmail.com</a> is not blocked. " +
"You can also send an email to <a href='mailto:support@xtrm.com'>support@xtrm.com</a>.</p>";
ShowLoginMessageBox(div, data[1], '.divInnerMessage');
} else {
ShowLoginMessageBox(data[0], data[1], '.divInnerMessage');
}
}
$(".divInnerMessage").removeClass("hide");
});
function ShowLoginMessageBox(message, type, control) {
var result = "";
if (type == 1) // Success
var result = '<div class="notification">' + message + '</div>';
if (type == 2) // Failure
var result = '<div id="notifications" class="notifications" tabindex="-1"><p class="notification notification-error" role="alert">' + message + '</p></div>';
$(control).html(result);
}
function getLocalProfile(callback) {
var profileImgSrc = localStorage.getItem("PROFILE_IMG_SRC");
var profileName = localStorage.getItem("PROFILE_NAME");
var profileReAuthEmail = localStorage.getItem("PROFILE_REAUTH_EMAIL");
if (profileName !== null && profileReAuthEmail !== null && profileImgSrc !== null) {
callback(profileImgSrc, profileName, profileReAuthEmail);
}
}
/**
* Main function that load the profile if exists
* in localstorage
*/
function loadProfile() {
if (!supportsHTML5Storage()) {
return false;
}
// we have to provide to the callback the basic
// information to set the profile
getLocalProfile(function(profileImgSrc, profileName, profileReAuthEmail) {
//changes in the UI
$("#profile-img").attr("src", profileImgSrc);
$("#profile-name").html(profileName);
$("#reauth-email").html(profileReAuthEmail);
$("#inputEmail").hide();
$("#remember").hide();
});
}
/**
* function that checks if the browser supports HTML5
* local storage
*
* @returns {boolean}
*/
function supportsHTML5Storage() {
try {
return 'localStorage' in window && window['localStorage'] !== null;
} catch (e) {
return false;
}
}
/**
* Test data. This data will be safe by the web app
* in the first successful login of a auth user.
* To Test the scripts, delete the localstorage data
* and comment this call.
*
* @returns {boolean}
*/
function testLocalStorageData() {
if (!supportsHTML5Storage()) {
return false;
}
localStorage.setItem("PROFILE_IMG_SRC", "//lh3.googleusercontent.com/-6V8xOA6M7BA/AAAAAAAAAAI/AAAAAAAAAAA/rzlHcD0KYwo/photo.jpg?sz=120");
localStorage.setItem("PROFILE_NAME", "César Izquierdo Tello");
localStorage.setItem("PROFILE_REAUTH_EMAIL", "oneaccount@gmail.com");
}
</script>
<script src="https://use.fontawesome.com/b9bdbd120a.js"></script>
</form>
Text Content
* * Why XTRM Products Developers How It Works Resources * Login Sign up * MENU Close WHY XTRM * * WHY Payments for any purpose, to anyone, anywhere * ABOUT Easy to use, transparent and immediate * CUSTOMERS Over 25,000 companies use XTRM * PARTNERS Join our partner network * ASSURANCE Complete financial assurance for all XTRM customers * PEOPLE Our people are our strongest asset PRODUCTS * * XTRM ANYSOURCETM Receive global payments * XTRM ANYPAY TM Manage and make global payments * XTRM FOR CRYPTO TM Embedded interoperability * XTRM API TM Global payments API * PAYMENT METHODS XTRM DirectTM and XTRM ChoiceTM DEVELOPERS * * GETTING STARTED Take control using our smart architecture * API OVERVIEW Automate any payment flow * FEATURES & BENEFITS Build payments into your platform * PARTNERS Join our developer partner network HOW IT WORKS * * OVERVIEW The intelligent way to manage payments * AGGREGATE Manage multi-tiered partner and customer funds * MANAGE Manage funding, reports and connected accounts * RECEIVE Multiple sources & currencies * SEND Provide users the choice of how to receive payment * TAX Global compliance and tax reporting * SECURITY Highly secure infrastructure * COMPLIANCE Global compliance and tax reporting RESOURCES * * CONTACT * REQUEST INFORMATION OR DEMO How can we help? * BLOG * BLOG XTRM Insights and Analysis * CASE STUDIES * CASE STUDIES XTRM Partner Success Stories * RESOURCE LIBRARY * E-BOOKS, INFOGRAPHICS & WHITE PAPERS In depth looks at leveraging Intelligent Payments * HELP * HELP Help & Knowledge Base * SUPPORT * SUPPORT Open a ticket * Login * Sign Up * WHY Payments for any purpose, to anyone, anywhere * ABOUT Easy to use, transparent and immediate * CUSTOMERS Over 25,000 companies use XTRM * PARTNERS Join our partner network * ASSURANCE Complete financial assurance for all XTRM customers * PEOPLE Our people are our strongest asset * XTRM ANYSOURCETM Receive global payments * XTRM ANYPAY TM Manage and make global payments * XTRM FOR CRYPTO TM Embedded interoperability * XTRM API TM Global payments API * PAYMENT METHODS XTRM DirectTM and XTRM ChoiceTM * GETTING STARTED Take control using our smart architecture * API OVERVIEW Automate any payment flow * FEATURES & BENEFITS Build payments into your platform * PARTNERS Join our developer partner network * OVERVIEW The intelligent way to manage payments * AGGREGATE Manage multi-tiered partner and customer funds * MANAGE Manage funding, reports and connected accounts * RECEIVE Multiple sources & currencies * SEND Provide users the choice of how to receive payment * TAX Global compliance and tax reporting * SECURITY Highly secure infrastructure * COMPLIANCE Global compliance and tax reporting * CONTACT * REQUEST INFORMATION OR DEMO How can we help? * BLOG * BLOG XTRM Insights and Analysis * CASE STUDIES * CASE STUDIES XTRM Partner & Customer Success Stories * RESOURCE LIBRARY * E-BOOKS, INFOGRAPHICS & WHITE PAPERS In depth looks at leveraging Intelligent Payments * HELP * HELP Help & Knowledge Base * SUPPORT * SUPPORT Open a ticket Remember me Sign in Forgot password? WHY * Why * About * Customers * Partners * Assurance * Sitemap * People * Careers PRODUCTS * XTRM AnySource TM * XTRM AnyPay TM * XTRM API TM * Payment Options * XTRM for Crypto DEVELOPERS * Getting Started * API Overview * Features & Benefits * Partners HOW IT WORKS * Aggregate * Receive * Manage * Send * Tax * Security * Compliance RESOURCES * Request Information or Demo * Case Studies * Help & Knowledge Base * Mobile App * Regulatory * Blog * Resource Library * Support * Terms & Conditions * Landing Pages * Privacy Policy Payment and foreign exchange transactions are powered and provided by Corpay. “Corpay” is the marketing trade name for the International Payment Solutions and Risk Management Solutions provided by certain subsidiaries of FleetCor Technologies, Inc. Use of this service is governed by Corpay’s Terms and Conditions. ➤ © 2022 XTRM Inc. * * * * *