Refer a Friend

Join our fam1ly. Get Rewarded.

As a thank you to you and your friend, you will both receive a $25 Amazon eGift Card!

How it Works

  1. Apply online to become a member in 3 easy steps.
  2. Once you're approved, claim your reward.

Become a Member

Our goal is to deliver unparalleled experiences in every area of your finances.

check-pen

SIMPLE & SECURE CHECKING

Open a checking account for easy, secure access to your money with no hidden monthly fees!

Mobile Phone

Convenient Mobile App

Enjoy the ease of banking from your favorite mobile device. Use everything from mobile deposits to concierge services with our mobile app.

Bank

Branch And ATM Access

With branches across Pennsylvania, you can talk to us face-to-face whenever you need to. You can also enjoy surcharge-free ATM withdrawals at participating locations throughout the United States.*

COMMON QUESTIONS

Rewards will be credited to you and the person who referred you no later than six business days after you complete all requirements of the program.

Please be aware that by continuing you will be leaving www.members1st.org and viewing content from another website.

For your protection please be advised that public Internet email is not secure. Various links within our web site allow you to submit information to us by public Internet email. Please DO NOT provide personal or account information through public email or submit any personal information that would compromise your identity including your account number, social security number, credit card numbers, electronic services PINs, passwords or mother's maiden name. Members 1st will not respond via public Internet email to requests-for-account-information or account activity. Please contact Customer Service with these types of requests at (800) 237-7288 or (717) 795-6049.

document.head.appendChild(styleElement); // Initialize AOS (Animate On Scroll) library AOS.init(); // Function to set a cookie accessible across subdomains with a 7-day expiration function setCookie(name, value, days, domain) { let expires = ""; if (days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } const domainPart = domain ? `; domain=${domain}` : ""; document.cookie = `${name}=${value || ""}${expires}${domainPart}; path=/`; } // Function to get a cookie value by name window.getCookie = function(name) { const nameEQ = `${name}=`; const ca = document.cookie.split(';'); for (let i = 0; i < ca.length; i++) { let c = ca[i]; while (c.charAt(0) === ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length); } return null; } // Function to get a query parameter value function getQueryParam(param) { const urlParams = new URLSearchParams(window.location.search); return urlParams.get(param); } // Check if URL contains 'promo=referral' and set cookie if true function checkPromoReferral() { const promoValue = getQueryParam('promo'); if (promoValue === 'referral') { setCookie('promo', 'referral', 7, '.members1st.org'); // Set to your root domain console.log('Promo cookie set to referral'); } } // Function to hide the "get-started" button if the URL does not include '?bp_e' function hideGetStartedButton() { const currentUrl = window.location.href; if (!currentUrl.includes('?bp_e')) { const getStartedButton = document.getElementById('get-started'); if (getStartedButton) { getStartedButton.style.display = 'none'; } } } // Execute the checks when the page loads checkPromoReferral(); hideGetStartedButton(); // Check if the promo cookie exists and has the correct value const promoValue = window.getCookie('promo'); if (promoValue === 'referral') { console.log('The "promo" cookie exists with the correct value: referral'); } else { console.log('The "promo" cookie does not exist or does not have the correct value. Current value:', promoValue); } });