campuscu.com
Open in
urlscan Pro
44.195.7.181
Public Scan
Submitted URL: http://www.campuscu.com//
Effective URL: https://campuscu.com/
Submission: On July 01 via api from US — Scanned from DE
Effective URL: https://campuscu.com/
Submission: On July 01 via api from US — Scanned from DE
Form analysis
4 forms found in the DOM/search
<form action="/search" class="header-search-form" novalidate="novalidate">
<div class="input-group">
<input name="query" type="text" alt="Search" title="Search" placeholder="What are you looking for?" class="form-control header-search-form__input js-lg-search-input">
<span class="input-group-btn">
<button class="btn btn-primary header-search-form__btn" type="submit" role="search" aria-label="Search">GO</button>
</span>
</div>
</form>
Name: Q2OnlineLogin — POST https://secure.campuscu.com/campususacredituniononline/Uux.aspx#/login
<form id="Q2OnlineLogin" action="https://secure.campuscu.com/campususacredituniononline/Uux.aspx#/login" method="post" name="Q2OnlineLogin" novalidate="novalidate">
<table style="border-spacing: 0">
<tbody>
<tr>
<td class="InlineHeight">
<input name="user_id" alt="Online Banking User ID" title="Online Banking User ID" type="text" id="user_id" class="input" autocomplete="Off" placeholder="Online Banking User ID">
<input type="text" style="display: none" alt="Online Banking User ID" title="Online Banking User ID">
</td>
</tr>
<tr>
<td class="InlineHeight">
<input name="password" alt="Password" title="Password" type="password" id="password" class="input" autocomplete="Off" placeholder="Password">
<input type="password" style="display: none" alt="Password" title="Password">
</td>
</tr>
<tr class="login-button-group">
<td class="InlineHeight" style="width: 100%;display: block;clear: both;">
<div class="RememberMe-group" role="group" aria-labelledby="loginOptions">
<fieldset>
<legend style="display: none;" id="loginOptions">Login Options</legend>
<input id="saveUserId" alt="Remember User ID" title="Remember User ID" class="checkbox" type="checkbox" name="remember" value="Remember">
<span>Remember Me</span>
<a class="login-help-link" href="/login-help/">Login Help</a>
<a class="enroll-now-link" href="/online-banking-enrollment/">Enroll</a>
<input type="submit" alt="Login Button" title="Login Button" name="LoginBtn" value="Log In" id="LoginBtn" class="LoginButton">
</fieldset>
</div>
</td>
</tr>
<script type="text/javascript">
(function() {
/*!
* JavaScript Cookie v2.0.4
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
! function(e) {
if ("function" == typeof define && define.amd) define(e);
else if ("object" == typeof exports) module.exports = e();
else {
var n = window.Cookies,
t = window.Cookies = e();
t.noConflict = function() {
return window.Cookies = n, t
}
}
}(function() {
function e() {
for (var e = 0, n = {}; e < arguments.length; e++) {
var t = arguments[e];
for (var o in t) n[o] = t[o]
}
return n
}
function n(t) {
function o(n, r, i) {
var c;
if (arguments.length > 1) {
if (i = e({
path: "/"
}, o.defaults, i), "number" == typeof i.expires) {
var s = new Date;
s.setMilliseconds(s.getMilliseconds() + 864e5 * i.expires), i.expires = s
}
try {
c = JSON.stringify(r), /^[\{\[]/.test(c) && (r = c)
} catch (a) {}
return r = t.write ? t.write(r, n) : encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent), n = encodeURIComponent(String(n)), n = n.replace(
/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent), n = n.replace(/[\(\)]/g, escape), document.cookie = [n, "=", r, i.expires && "; expires=" + i.expires.toUTCString(), i.path && "; path=" + i.path, i.domain && "; domain=" + i
.domain, i.secure ? "; secure" : ""
].join("")
}
n || (c = {});
for (var p = document.cookie ? document.cookie.split("; ") : [], d = /(%[0-9A-Z]{2})+/g, u = 0; u < p.length; u++) {
var f = p[u].split("="),
l = f[0].replace(d, decodeURIComponent),
m = f.slice(1).join("=");
'"' === m.charAt(0) && (m = m.slice(1, -1));
try {
if (m = t.read ? t.read(m, l) : t(m, l) || m.replace(d, decodeURIComponent), this.json) try {
m = JSON.parse(m)
} catch (a) {}
if (n === l) {
c = m;
break
}
n || (c[l] = m)
} catch (a) {}
}
return c
}
return o.get = o.set = o, o.getJSON = function() {
return o.apply({
json: !0
}, [].slice.call(arguments))
}, o.defaults = {}, o.remove = function(n, t) {
o(n, "", e(t, {
expires: -1
}))
}, o.withConverter = n, o
}
return n(function() {})
});
var COOKIE_KEY = 'savedUserId';
var submit = document.getElementById('LoginBtn');
var userId = document.getElementById('user_id');
var isSaveUserId = document.getElementById('saveUserId');
var mobileSubmit = document.getElementById('mobile_LoginBtn'),
mobileUserId = document.getElementById('mobile_user_id'),
mobileIsSaveUserId = document.getElementById('mobile_saveUserId');
if (null != mobileUserId) {
mobileUserId.setAttribute('placeholder', 'Online Banking User ID');
if (mobileSubmit.addEventListener) {
mobileSubmit.addEventListener('click', mobileStoreUserID, false);
} else {
mobileSubmit.attachEvent('click', mobileStoreUserID);
}
}
userId.setAttribute('placeholder', 'Online Banking User ID');
/* Cookie Store Logic */
if (submit.addEventListener) {
submit.addEventListener('click', storeUserID, false);
} else {
submit.attachEvent('click', storeUserID);
}
function storeUserID() {
if (isSaveUserId.checked) {
Cookies.set(COOKIE_KEY, userId.value, {
expires: 180
});
} else {
Cookies.remove(COOKIE_KEY)
}
document.forms['Q2OnlineLogin'].submit();
}
function mobileStoreUserID() {
if (mobileIsSaveUserId.checked) {
Cookies.set(COOKIE_KEY, mobileUserId.value, {
expires: 180
});
} else {
Cookies.remove(COOKIE_KEY)
}
document.forms['mobile_Q2OnlineLogin'].submit();
}
/* Cookie Load Login */
window.onload = function() {
var storedId = Cookies.get(COOKIE_KEY);
if (storedId) {
userId.value = Cookies.get(COOKIE_KEY);
isSaveUserId.checked = true;
}
};
})();
</script>
</tbody>
</table>
</form>
/search
<form action="/search" class="md-search__form" novalidate="novalidate">
<input type="submit" alt="Submit Search" title="Submit" name="submit-search" class="sr-only">
<input name="query" alt="Search" title="Search" type="text" placeholder="Search" class="form-control md-search__input">
</form>
Name: Q2OnlineLogin — POST https://secure.campuscu.com/campususacredituniononline/Uux.aspx#/login
<form id="mobile_Q2OnlineLogin" action="https://secure.campuscu.com/campususacredituniononline/Uux.aspx#/login" method="post" name="Q2OnlineLogin" novalidate="novalidate">
<table style="border-spacing: 0">
<tbody>
<tr>
<td class="InlineHeight">
<input name="user_id" alt="Online Banking User ID" title="Online Banking User ID" type="text" id="mobile_user_id" class="input" autocomplete="Off" placeholder="Online Banking User ID">
<input type="text" style="display: none" alt="Online Banking User ID" title="Online Banking User ID">
</td>
</tr>
<tr>
<td class="InlineHeight">
<input name="password" alt="Password" title="Password" type="password" id="mobile_password" class="input" autocomplete="Off" placeholder="Password">
<input type="password" style="display: none" alt="Password" title="Password">
</td>
</tr>
<tr class="login-button-group">
<td class="InlineHeight" style="width: 100%;display: block;clear: both;">
<div class="RememberMe-group" role="group" aria-labelledby="mobile_loginOptions">
<fieldset>
<legend style="display: none;" id="mobile_loginOptions">Login Options</legend>
<input id="mobile_saveUserId" alt="Remember User ID" title="Remember User ID" class="checkbox" type="checkbox" name="remember" value="Remember">
<span>Remember Me</span>
<a class="login-help-link" href="/login-help/">Login Help</a>
<a class="enroll-now-link" href="/online-banking-enrollment/">Enroll</a>
<input type="submit" alt="Login Button" title="Login Button" name="LoginBtn" value="Log In" id="mobile_LoginBtn" class="LoginButton">
</fieldset>
</div>
</td>
</tr>
<script type="text/javascript">
(function() {
/*!
* JavaScript Cookie v2.0.4
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
! function(e) {
if ("function" == typeof define && define.amd) define(e);
else if ("object" == typeof exports) module.exports = e();
else {
var n = window.Cookies,
t = window.Cookies = e();
t.noConflict = function() {
return window.Cookies = n, t
}
}
}(function() {
function e() {
for (var e = 0, n = {}; e < arguments.length; e++) {
var t = arguments[e];
for (var o in t) n[o] = t[o]
}
return n
}
function n(t) {
function o(n, r, i) {
var c;
if (arguments.length > 1) {
if (i = e({
path: "/"
}, o.defaults, i), "number" == typeof i.expires) {
var s = new Date;
s.setMilliseconds(s.getMilliseconds() + 864e5 * i.expires), i.expires = s
}
try {
c = JSON.stringify(r), /^[\{\[]/.test(c) && (r = c)
} catch (a) {}
return r = t.write ? t.write(r, n) : encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent), n = encodeURIComponent(String(n)), n = n.replace(
/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent), n = n.replace(/[\(\)]/g, escape), document.cookie = [n, "=", r, i.expires && "; expires=" + i.expires.toUTCString(), i.path && "; path=" + i.path, i.domain && "; domain=" + i
.domain, i.secure ? "; secure" : ""
].join("")
}
n || (c = {});
for (var p = document.cookie ? document.cookie.split("; ") : [], d = /(%[0-9A-Z]{2})+/g, u = 0; u < p.length; u++) {
var f = p[u].split("="),
l = f[0].replace(d, decodeURIComponent),
m = f.slice(1).join("=");
'"' === m.charAt(0) && (m = m.slice(1, -1));
try {
if (m = t.read ? t.read(m, l) : t(m, l) || m.replace(d, decodeURIComponent), this.json) try {
m = JSON.parse(m)
} catch (a) {}
if (n === l) {
c = m;
break
}
n || (c[l] = m)
} catch (a) {}
}
return c
}
return o.get = o.set = o, o.getJSON = function() {
return o.apply({
json: !0
}, [].slice.call(arguments))
}, o.defaults = {}, o.remove = function(n, t) {
o(n, "", e(t, {
expires: -1
}))
}, o.withConverter = n, o
}
return n(function() {})
});
var COOKIE_KEY = 'savedUserId';
var submit = document.getElementById('LoginBtn');
var userId = document.getElementById('user_id');
var isSaveUserId = document.getElementById('saveUserId');
var mobileSubmit = document.getElementById('mobile_LoginBtn'),
mobileUserId = document.getElementById('mobile_user_id'),
mobileIsSaveUserId = document.getElementById('mobile_saveUserId');
if (null != mobileUserId) {
mobileUserId.setAttribute('placeholder', 'Online Banking User ID');
if (mobileSubmit.addEventListener) {
mobileSubmit.addEventListener('click', mobileStoreUserID, false);
} else {
mobileSubmit.attachEvent('click', mobileStoreUserID);
}
}
userId.setAttribute('placeholder', 'Online Banking User ID');
/* Cookie Store Logic */
if (submit.addEventListener) {
submit.addEventListener('click', storeUserID, false);
} else {
submit.attachEvent('click', storeUserID);
}
function storeUserID() {
if (isSaveUserId.checked) {
Cookies.set(COOKIE_KEY, userId.value, {
expires: 180
});
} else {
Cookies.remove(COOKIE_KEY)
}
document.forms['Q2OnlineLogin'].submit();
}
function mobileStoreUserID() {
if (mobileIsSaveUserId.checked) {
Cookies.set(COOKIE_KEY, mobileUserId.value, {
expires: 180
});
} else {
Cookies.remove(COOKIE_KEY)
}
document.forms['mobile_Q2OnlineLogin'].submit();
}
/* Cookie Load Login */
window.onload = function() {
var storedId = Cookies.get(COOKIE_KEY);
if (storedId) {
userId.value = Cookies.get(COOKIE_KEY);
isSaveUserId.checked = true;
}
};
})();
</script>
</tbody>
</table>
</form>
Text Content
Skip to main content * Searching campuscu.com * About * ATMs/Locations * Careers * Contact * Rates * Make a Payment * Search Close GO Toggle navigation MENU Toggle login form LOGIN * Login Options Remember Me Login Help Enroll * Close Navigation Menu * Personal * Personal Overview * BANKING * Checking Accounts * Youth Accounts * Loans & Credit Cards * Savings SERVICES * Check Reorder * Digital Banking * CAMPUS Investment Services * Quorum Insurance * Gift Cards RESOURCES * Webinars & Events * Calculators * Member Benefits * Rates * Video Tutorials * CAMPUS Corner Blog * Business * Business Overview * BANKING * Checking * Loans & Credit * Business Loan Contact Form SERVICES * Digital Banking * Payment Solutions * Select Employer Groups * CAMPUS Investment Services * Quorum Insurance * Loans & Credit * Loans & Credit Overview * PERSONAL LOANS * Auto Loans * Credit Cards * Mortgage & Home Equity Loans * Personal Loans * Simplicity Loans BUSINESS LOANS * Credit Cards * Lines of Credit * Mortgages * Vehicle & Equipment Loans SERVICES * Calculators * Loan & Asset Protection * Make a Payment * Rates * Investments & Insurance * Investments & Insurance Overview * INVESTMENTS * CAMPUS Investment Services INSURANCE * Quorum Insurance * TruStage® Insurance * About * ATMs/Locations * Careers * Contact * Rates * Make a Payment Account Log In Close Login Menu Login Options Remember Me Login Help Enroll Close All CAMPUS Service Centers will be closed Thursday, July 4, in observance of Independence Day. CAMPUS Online and Mobile Banking is available 24/7! Previous DIGITAL WALLET Easy, secure payments Learn More Learn More EXPLORE YOUR OPTIONS with CAMPUS Investment Services Learn More DIGITAL WALLET Easy, secure payments Learn More Learn More EXPLORE YOUR OPTIONS with CAMPUS Investment Services Learn More DIGITAL WALLET Easy, secure payments Learn More Next * * * Previous JOIN OUR TEAM Take your career to the next level with generous compensation and advancement opportunities. VIEW JOB LISTINGS ABOUT US CAMPUS members own the credit union! See why we’re better than a bank. LEARN MORE MAKE AN APPOINTMENT Schedule a time to meet with a CAMPUS Representative. SCHEDULE NOW OPEN AN ACCOUNT Open a checking or savings account and become part-owner of the credit union. OPEN TODAY APPLY FOR A LOAN Get low rates and quick approvals on auto loans, mortgages, personal and business loans and more. APPLY NOW JOIN OUR TEAM Take your career to the next level with generous compensation and advancement opportunities. VIEW JOB LISTINGS ABOUT US CAMPUS members own the credit union! See why we’re better than a bank. LEARN MORE MAKE AN APPOINTMENT Schedule a time to meet with a CAMPUS Representative. SCHEDULE NOW OPEN AN ACCOUNT Open a checking or savings account and become part-owner of the credit union. OPEN TODAY APPLY FOR A LOAN Get low rates and quick approvals on auto loans, mortgages, personal and business loans and more. APPLY NOW JOIN OUR TEAM Take your career to the next level with generous compensation and advancement opportunities. VIEW JOB LISTINGS ABOUT US CAMPUS members own the credit union! See why we’re better than a bank. LEARN MORE MAKE AN APPOINTMENT Schedule a time to meet with a CAMPUS Representative. SCHEDULE NOW Next CAMPUS FREE CHECKING Open an Account Today OPEN AN ACCOUNT REFINANCE YOUR AUTO LOAN FROM ANOTHER LENDER CAMPUS ONLINE & MOBILE BANKING LOANS & CREDIT CARDS INVESTED IN OUR COMMUNITY Join us for an event, and follow us on Facebook and Instagram to see more. 2023 COMMUNITY IMPACT Our commitment to giving back to our communities. EMPLOYEE SPOTLIGHT See what our employees have to say about working at CAMPUS HELPING PEOPLE. CHANGING LIVES. GIVING BACK. ADDRESSING LOCAL FOOD, SHELTER, AND SAFETY INSECURITIES. Need assistance? Contact our friendly team today. * Find ATMs/Locations * Career Opportunities * Facebook * Instagram * Twitter * LinkedIn * YouTube * iOS App * Android App CAMPUS USA Credit Union is committed to providing a website that is accessible to the widest possible audience in accordance with ADA standards and guidelines. If you are using a screen reader or other auxiliary aid and are having problems using this website, please contact us for assistance at (800) 367-6440. All products and services available on this website are available at all CAMPUS USA Credit Union service centers and the call center. Membership is open to anyone in Alachua, Citrus, Clay, Columbia, Duval, Gadsden, Gilchrist, Hernando, Hillsborough, Jefferson, Lake, Leon, Levy, Madison, Marion, Nassau, Orange, Pasco, Polk, Seminole, Sumter, Suwannee, Taylor, and Wakulla counties. Credit approval and initial $5 deposit required. Also of Interest * Credit Union Auto Loan Calculator * Mortgage Loan Calculator * Free Checking Account * Check Reorder * About * Security -------------------------------------------------------------------------------- Copyright © 2024 CAMPUS USA Credit Union. All rights reserved. Routing # 263178478 NMLS # 799574 Federally insured by the NCUA. Live Chat