CINXE.COM
Sign Up! AARP
<!DOCTYPE html> <!--[if IE 8]><html class="ie8" lang="en"> <![endif]--> <!--[if IE 9]><html class="ie9" lang="en"> <![endif]--> <!--[if gte IE 9]><html class="ie" lang="en"> <![endif]--> <!--[if !IE]><!--><html lang="en"><!--<![endif]--> <head profile="http://www.w3.org/1999/xhtml/vocab"> <meta name="HandheldFriendly" content="TRUE" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" href="https://action.aarp.org/files/aarp/favicon%20%281%29.ico" type="image/vnd.microsoft.icon" /> <!--[if !IE]><!--><script>if (Function('/*@cc_on return document.documentMode===10@*/') ()) { document.documentElement.className+=' ie10'; } var isIE11 = !!navigator.userAgent.match(/Trident\/7\./) if (isIE11 == true) { document.documentElement.className += ' ie11'; } </script><!--<![endif]--> <script> ;(function(win, doc, style, timeout) { var STYLE_ID = 'at-body-style'; function getParent() { return doc.getElementsByTagName('head')[0]; } function addStyle(parent, id, def) { if (!parent) { return; } var style = doc.createElement('style'); style.id = id; style.innerHTML = def; parent.appendChild(style); } function removeStyle(parent, id) { if (!parent) { return; } var style = doc.getElementById(id); if (!style) { return; } parent.removeChild(style); } addStyle(getParent(), STYLE_ID, style); setTimeout(function() { removeStyle(getParent(), STYLE_ID); }, timeout); }(window, document, "body {opacity: 0 !important}", 3000)); ;(function(win, doc, style, timeout) { var STYLE_ID = 'at-body-style'; function getParent() { return doc.getElementsByTagName('head')[0]; } function addStyle(parent, id, def) { if (!parent) { return; } var style = doc.createElement('style'); style.id = id; style.innerHTML = def; parent.appendChild(style); } function removeStyle(parent, id) { if (!parent) { return; } var style = doc.getElementById(id); if (!style) { return; } parent.removeChild(style); } addStyle(getParent(), STYLE_ID, style); setTimeout(function() { removeStyle(getParent(), STYLE_ID); }, timeout); }(window, document, "body {opacity: 0 !important}", 3000)); </script> <!-- Meta Pixel Code --> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '400788587936932'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=400788587936932&ev=PageView&noscript=1" /></noscript> <!-- End Meta Pixel Code --> <!-- Tag for Activity Group: Louisiana Caregiving_May 2023, Activity Name: AARP - Louisiana Caregiving_Conversion_Button, Activity ID: 14214241 --> <!-- Expected URL: https://action.aarp.org/secure/living-home-important-you-2 --> <!-- Activity ID: 14214241 Activity Name: AARP - Louisiana Caregiving_Conversion_Button Activity Group Name: Louisiana Caregiving_May 2023 --> <!-- Start of global snippet: Please do not remove Place this snippet between the <head> and </head> tags on every page of your site. --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=DC-4652332"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'DC-4652332'); </script> <!-- End of global snippet: Please do not remove --> <!-- Start of global snippet: Please do not remove Place this snippet between the <head> and </head> tags on every page of your site. --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=DC-4652332"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'DC-4652332'); </script> <!-- End of global snippet: Please do not remove --> <script> // (function ($) { // If an encoded percent sign is detected in the URL after page load, redirect to the decoded form URL. // $(document).ready(function(){ // Get current form URL. var formURL = window.location.href; // If the current URL includes an encoded percent sign, decode and redirect. if (formURL.indexOf("%25") !== -1) { // decode URL var formURLDecoded = decodeURIComponent(formURL); // redirect page window.location.replace(formURLDecoded); } // }); //})(jQuery); </script> <!-- Tag for Activity Group: Louisiana Caregiving_May 2023, Activity Name: AARP - Louisiana Caregiving_Conversion_Landing Page, Activity ID: 14232164 --> <!-- Expected URL: https://action.aarp.org/secure/living-home-important-you-2 --> <!-- Activity ID: 14232164 Activity Name: AARP - Louisiana Caregiving_Conversion_Landing Page Activity Group Name: Louisiana Caregiving_May 2023 --> <!-- Start of global snippet: Please do not remove Place this snippet between the <head> and </head> tags on every page of your site. --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=DC-4652332"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'DC-4652332'); </script> <!-- End of global snippet: Please do not remove --> <!-- Omniture Datalayer tag updated 2024.11.15 --!> <script> /* Define data layer */ if (typeof AARP === 'undefined') { AARP = {} } // Parse current URL. var paths = []; if (typeof URL === "function") { const parsedUrl = new URL(window.location.href); // Get host parts. var hostParts = parsedUrl.host.split('.'); var subdomain = hostParts[0] ? hostParts[0] : ''; // Get paths. var pathname = parsedUrl.pathname; paths = pathname.split('/'); paths.shift(); } // Get tag name from keywords metatag: // advocacy or fundraiser. var metaKeywords = document.head.querySelector("[name=keywords][content]"); var tagname = ''; if (typeof(metaKeywords) != 'undefined' && metaKeywords != null) { metaKeywords = metaKeywords.content; var keywords = metaKeywords ? metaKeywords.split(',') : []; const tagnameOptions = ['advocacy', 'donation']; // Check keywords for allowed options. for (let i = 0; i < keywords.length; i++) { var keyword = keywords[i]; if (tagnameOptions.indexOf(keyword) >= 0) { tagname = keyword; } } } // Get registration type for conversion data. var registrationType = ''; var formSid = "".replace(/\s/g, ''); if (formSid !== '' || paths[2] === 'phone-message-preview' || paths[2] === 'social-message-preview') { // Check node type. var contentType = "Form".replace(/\s/g, '').toLowerCase(); // Set node type for phone message preview page. if (contentType === '' && paths[2] === 'phone-message-preview') { contentType = 'phoneaction'; } // Set node type for social message preview page. if (contentType === '' && paths[2] === 'social-message-preview') { contentType = 'socialaction'; } // Set registrationtype value map. var registrationMap = { 'donationform':'DONATION COMPLETED', 'messageaction': 'MESSAGE ACTION COMPLETED', 'socialaction': 'SOCIAL ACTION COMPLETED', 'phoneaction': 'PHONE ACTION COMPLETED', 'petition': 'PETITION COMPLETED', 'form': 'WEBFORM COMPLETED' }; // Check for form type in map. if (registrationMap.hasOwnProperty(contentType)) { registrationType = registrationMap[contentType]; } } // Build datalayer object. AARP.MetaInfo = { pagedata:{ pagename: subdomain, // this would be the subdomain var1: subdomain,//this would be the subdomain again var2: paths[0] ? paths[0] : '',//this would be the first subdirectory var3: paths[1] ? paths[1] : '',// this would be the second subdirectory var4: paths[2] ? paths[2] : '',//this would be the third subdirectory var5: paths[3] ? paths[3] : '',//this would be the fourth subdirectory pagetype: subdomain,//this would be the subdomain again language:'english',//site language value ex "english" publishDate:'2020-07-30',//date of content publish todaysDate:'2024-11-24',//today's date lastModified:'2020-01-14-11-30',//date of last modify publisher:'',//channel/publisher authorName:'admin',//name of content author source:'vendor'//name of content source }, userdata:{ status:'',//[loggedin/anonymous] federatedid:'',//[Federated ID] AARP Registered User ID konnexid:'',//Konnex/Membership ID dsouserid:'',//DSO User ID memstatus:'',//[membership status][1=Non Member, 0=Active Member, 5=Expired Member] memdate:'',//[member join date]?MM/DD/YYYY memexpdate:'',//[member expire date]?MM/DD/YYYY memterm:'',//[membership terms][1 year, 5 year, etc] memflag:'',//[member renew flag]Flag member auto renew (Y, N) memftr:'',//[membership first time renewal]Flag (0=Yes, 1=No, null=non members) zipcode:'',//zip code accounttype:'',//Staying Sharp access eventtype: ''//page view event }, contentdata:{ videoid:'',//videoID articleid:'2049',//form id [df_id] contentid:'Form',//form type [#####.donation=form1] tagid: subdomain + ',' + tagname //text array of content tags [tagID] }, webdata:{ campaign:'',//Campaign Parameter ID campaigntype:'',//Campaign Type partnerid:'',//Traffic Partner ID or Code smartcode:'',//Tracking ID Campaign Param testid:''//Adobe Target ID }, transactiondata:{ registrationtype: registrationType,//Indicates conversion, default blank. donationorderamount:'',//Amount donated paymenttype:'',//Credit card, Paypal donationtype:'',//One time, monthly transactionid:''//Unique transaction id } } </script> <script src="https://assets.adobedtm.com/bbdf17838fe5/74bdb7042a1b/launch-ENfc31ab1bac944ca8866743454782e0b0.min.js" async></script> <meta name="description" content="AARP is making a difference – whether it's fighting to protect your hard-earned Medicare and Social Security benefits, save you money on your utility bills or ensure you can live independently as you age. Sign up below to become an AARP Activist, and you'll receive the AARP Advocate, a free monthly e-newsletter; e-mail action alerts on the issues you care about; and the latest" /> <meta name="robots" content="nofollow, noindex" /> <meta name="generator" content="Drupal 7 (https://www.drupal.org)" /> <link rel="canonical" href="https://action.aarp.org/sign" /> <link rel="shortlink" href="https://action.aarp.org/node/2049" /> <meta name="twitter:title" content="Sign Up!" /> <meta name="twitter:description" content="AARP is making a difference – whether it's fighting to protect your hard-earned Medicare and Social Security benefits, save you money on your utility bills or ensure you can live independently as you" /> <title>Sign Up! AARP</title> <link type="text/css" rel="stylesheet" href="https://action.aarp.org/files/aarp/css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css" media="all" /> <link type="text/css" rel="stylesheet" href="https://action.aarp.org/files/aarp/css/css_EBVCgZaZzPeoedu99JWwyqzz2ro9peEQY6Hc3yO8s-U.css" media="all" /> <link type="text/css" rel="stylesheet" href="https://action.aarp.org/files/aarp/css/css_FCLGNKcKLyLG-VWOMW6-t9NnCXjW--K0PuW83PlgHhY.css" media="all" /> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_JDqIMQUwCziAIyAXFlXIbQ-XTrwzmjGSKLnZE2Prk74.js"></script> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_WwwX68M9x5gJGdauMeCoSQxOzb1Ebju-30k5FFWQeH0.js"></script> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_zX12wXoioTUl_561tth_TuKLGJfYzifj6T0MWYi6Dz0.js"></script> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_ITUHDKhrE_TZri1blamEsuMtp4LL2uDXNUFpCnjgAQs.js"></script> <script type="text/javascript" src="https://js.stripe.com/v3"></script> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_T9X1YvnumzGT6GtiJMVBIk1nGc72HNxRS66hWR99asI.js"></script> <script type="text/javascript" src="https://action.aarp.org/files/aarp/js/js_bMNcqAqOcpVB4VGYw6F9HDONHfb363vwhq0fr67kcxM.js"></script> <script type="text/javascript"> <!--//--><![CDATA[//><!-- jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","setHasJsCookie":0,"ajaxPageState":{"theme":"springboard_frontend","theme_token":"7n1H-lZ8o2BxrI7O84lO6fGY5y0ckuDjw6nbyk5_F4Y","js":{"0":1,"sites\/all\/modules\/contrib\/jquery_update\/replace\/jquery\/1.7\/jquery.min.js":1,"misc\/jquery-extend-3.4.0.js":1,"misc\/jquery-html-prefilter-3.5.0-backport.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/contrib\/jquery_update\/replace\/ui\/external\/jquery.cookie.js":1,"misc\/form-single-submit.js":1,"sites\/all\/modules\/contrib\/entityreference\/js\/entityreference.js":1,"sites\/all\/modules\/springboard\/webform_goals\/scripts\/webform_goals.drupal_loader.js":1,"sites\/all\/modules\/springboard\/market_source\/js\/jquery-cookie.js":1,"sites\/all\/modules\/springboard\/market_source\/js\/market_source.js":1,"https:\/\/js.stripe.com\/v3":1,"sites\/all\/modules\/springboard\/springboard\/modules\/springboard_admin\/js\/springboard-admin.form-edit-protect.js":1,"sites\/all\/modules\/springboard\/webform_user\/js\/webform_user.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/springboard_cookie\/js\/springboard_cookie.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/js\/secure-prepopulate.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/js\/secure-prepopulate-helpers.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/js\/secure-prepopulate-af.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/js\/secure-prepopulate-gs.js":1,"sites\/all\/modules\/springboard\/secure_prepopulate\/js\/secure-prepopulate-gs-field-updates.js":1,"sites\/all\/modules\/contrib\/webform\/js\/webform.js":1,"sites\/all\/modules\/springboard\/springboard_fraud\/js\/token.js":1,"public:\/\/page_wrappers\/scripts\/jquery.placeholder.min_.js":1,"public:\/\/page_wrappers\/scripts\/advocacy.js":1,"public:\/\/page_wrappers\/scripts\/goal-format-011220-3.js":1,"public:\/\/page_wrappers\/scripts\/autofill-011620-2.js":1,"sites\/all\/themes\/springboard_themes\/springboard_base\/js\/bootstrap.min.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"modules\/aggregator\/aggregator.css":1,"sites\/all\/modules\/springboard\/embedded_forms\/css\/embedded_forms.admin.css":1,"modules\/field\/theme\/field.css":1,"sites\/all\/modules\/springboard\/fundraiser\/modules\/fundraiser_sustainers\/css\/fundraiser_sustainers.events.css":1,"modules\/node\/node.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/springboard\/webform_goals\/css\/webform_goals.css":1,"sites\/all\/modules\/contrib\/views\/css\/views.css":1,"sites\/all\/modules\/contrib\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/contrib\/panels\/css\/panels.css":1,"sites\/all\/modules\/springboard\/springboard_advocacy\/modules\/sba_social_action\/css\/social-message-confirmation.css":1,"sites\/all\/modules\/contrib\/webform\/css\/webform.css":1,"sites\/all\/themes\/springboard_themes\/springboard_backend\/css\/uniform_base.css":1,"sites\/all\/themes\/springboard_themes\/springboard_backend\/css\/styles.css":1,"sites\/all\/themes\/springboard_themes\/springboard_frontend\/css\/styles.css":1,"public:\/\/page_wrappers\/styles\/advocacy_1.css":1,"public:\/\/page_wrappers\/styles\/responsive-styles.css":1,"public:\/\/page_wrappers\/styles\/confirmation-styles-051520-0.css":1,"public:\/\/page_wrappers\/styles\/phone_and_social_actions.css":1}},"market_source":{"qs_keys":{"ms":{"value":null,"persistence":"on"},"cid":{"value":null,"persistence":"off"},"referrer":{"value":null,"persistence":"direct"},"initial_referrer":{"value":null,"persistence":"direct"},"search_engine":{"value":null,"persistence":"on"},"search_string":{"value":null,"persistence":"on"},"user_agent":{"value":null,"persistence":"on"},"device_type":{"value":null,"persistence":"direct"},"device_name":{"value":null,"persistence":"direct"},"device_os":{"value":null,"persistence":"direct"},"device_browser":{"value":null,"persistence":"direct"},"origin_nid":{"value":null,"persistence":"on"},"origin_form_name":{"value":null,"persistence":"on"},"utm_source":{"value":null,"persistence":"on"},"utm_medium":{"value":null,"persistence":"on"},"utm_term":{"value":null,"persistence":"on"},"utm_content":{"value":null,"persistence":"on"},"utm_campaign":{"value":null,"persistence":"on"},"eml_name":{"value":null,"persistence":"on"},"eml_id":{"value":null,"persistence":"on"},"initms":{"value":null,"persistence":"on"},"cmp":{"value":null,"persistence":"on"},"sfmc_s":{"value":null,"persistence":"on"},"sc":{"value":null,"persistence":"on"},"emailsrc":{"value":null,"persistence":"on"},"social_referer_transaction":{"value":null,"persistence":"on"}},"maxlength":255,"cookie_domain":"","cookie_path":"\/","form_keys":{"webform-client-form-2049":{"ms":"submitted[ms]","cid":"submitted[cid]","referrer":"submitted[referrer]","initial_referrer":"submitted[initial_referrer]","search_engine":"submitted[search_engine]","search_string":"submitted[search_string]","user_agent":"submitted[user_agent]","device_type":"submitted[device_type]","device_name":"submitted[device_name]","device_os":"submitted[device_os]","device_browser":"submitted[device_browser]","origin_nid":"submitted[origin_nid]","origin_form_name":"submitted[origin_form_name]","utm_source":"submitted[utm_source]","utm_medium":"submitted[utm_medium]","utm_term":"submitted[utm_term]","utm_content":"submitted[utm_content]","utm_campaign":"submitted[utm_campaign]","eml_name":"submitted[eml_name]","eml_id":"submitted[eml_id]","cmp":"submitted[cmp]","sfmc_s":"submitted[sfmc_s]","emailsrc":"submitted[emailsrc]","social_referer_transaction":"submitted[social_referer_transaction]"}}},"springboard":{"cookie_path":"\/","currentNid":"2049"},"webform_goals":{"loader_url":"https:\/\/action.aarp.org\/webform_goals_jsonp"},"formEditProtectionSelector":"form.node-page_wrapper-form","springboard_cookie":{"name":"Springboard","domain":""},"secure_prepopulate":{"secure_prepopulate_not_me":"\u003Cdiv id=\u0027welcome-back\u0027\u003E\u003Cspan class=\u0027welcome-back-name\u0027\u003EWelcome back, \u003Cspan class=\u0027welcome-back-name\u0027\u003EFIRSTNAME\u003C\/span\u003E. Not FIRSTNAME? \u003Ca id=\u0027notme\u0027 href=\u0027javascript:void(0)\u0027\u003EClick here\u003C\/span\u003E\u003C\/div\u003E"},"urlIsAjaxTrusted":{"\/sign":true},"js":{"tokens":[]}}); //--><!]]> </script> <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> </head> <body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-2049 node-type-webform i18n-en not-front not-logged-in node-type-webform page-node-view" > <div id="skip-link"> <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a> </div> <script type="text/javascript" src="/sites/all/modules/springboard/fundraiser/js/jquery.validate.min.js"></script><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous" /><header><div class="container"> <a href="/" id="logo"> <img src="/files/aarp/AARP%20Logo%202020_Red.png" alt="AARP" /></a> </div> </header><main> <h1>Sign Up!</h1> <div class="region region-content"> <div id="block-system-main" class="block block-system"> <div class="content"> <div id="node-2049" class="node node-webform node-promoted clearfix" about="/sign" typeof="sioc:Item foaf:Document"> <span property="dc:title" content="Sign Up!" class="rdf-meta element-hidden"></span> <div class="content"> <div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>AARP is making a difference – whether it's <strong>fighting to protect your hard-earned Medicare and Social Security benefits, save you money on your utility bills or ensure you can live independently as you age.</strong></p> <p><strong>Sign up below to become an AARP Activist</strong>, and you'll receive the AARP Advocate, a free monthly e-newsletter; e-mail action alerts on the issues you care about; and the latest news on Congress and the White House.</p> </div></div></div><form class="webform-client-form" enctype="multipart/form-data" action="/sign" method="post" id="webform-client-form-2049" accept-charset="UTF-8"><input type="hidden" name="submitted[springboard_cookie_autofilled]" value="disabled" /> <div class="form-item webform-component webform-component-select control-group" id="webform-component-Title"> <label for="edit-submitted-title">Title </label> <select id="edit-submitted-title" name="submitted[Title]" class="form-select"><option value="" selected="selected">- None -</option><option value="Mr.">Mr</option><option value="Ms.">Ms</option><option value="Mrs.">Mrs</option><option value="Miss.">Miss</option><option value="Dr.">Dr</option></select> </div><div class="form-item webform-component webform-component-email control-group" id="webform-component-mail"> <label for="edit-submitted-mail">E-mail address <span class="form-required" title="This field is required.">*</span></label> <input class="email form-text form-email required" type="email" id="edit-submitted-mail" name="submitted[mail]" size="60" /> </div><input type="hidden" name="submitted[ms]" value="ADV_SignUp_Web" /> <input type="hidden" name="submitted[cid]" value="7013i000000EAm0AAG" /> <input type="hidden" name="submitted[referrer]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-first-name"> <label for="edit-submitted-sbp-first-name">First name </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-first-name" name="submitted[sbp_first_name]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[initial_referrer]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-last-name"> <label for="edit-submitted-sbp-last-name">Last name </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-last-name" name="submitted[sbp_last_name]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[search_engine]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-address"> <label for="edit-submitted-sbp-address">Address </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-address" name="submitted[sbp_address]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[search_string]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-address-line-2"> <label for="edit-submitted-sbp-address-line-2">Address Line 2 </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-address-line-2" name="submitted[sbp_address_line_2]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[user_agent]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-city"> <label for="edit-submitted-sbp-city">City </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-city" name="submitted[sbp_city]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[device_type]" value="" /> <input type="hidden" name="submitted[device_name]" value="" /> <div class="form-item webform-component webform-component-select control-group" id="webform-component-sbp-state"> <label for="edit-submitted-sbp-state">State/Province </label> <select class="input-medium form-select" id="edit-submitted-sbp-state" name="submitted[sbp_state]"><option value="" selected="selected">- None -</option><option value="AK">Alaska</option><option value="AL">Alabama</option><option value="AR">Arkansas</option><option value="AZ">Arizona</option><option value="CA">California</option><option value="CO">Colorado</option><option value="CT">Connecticut</option><option value="DC">District Of Columbia</option><option value="DE">Delaware</option><option value="FL">Florida</option><option value="GA">Georgia</option><option value="HI">Hawaii</option><option value="IA">Iowa</option><option value="ID">Idaho</option><option value="IL">Illinois</option><option value="IN">Indiana</option><option value="KS">Kansas</option><option value="KY">Kentucky</option><option value="LA">Louisiana</option><option value="MA">Massachusetts</option><option value="MD">Maryland</option><option value="ME">Maine</option><option value="MI">Michigan</option><option value="MN">Minnesota</option><option value="MO">Missouri</option><option value="MS">Mississippi</option><option value="MT">Montana</option><option value="NC">North Carolina</option><option value="ND">North Dakota</option><option value="NE">Nebraska</option><option value="NH">New Hampshire</option><option value="NJ">New Jersey</option><option value="NM">New Mexico</option><option value="NV">Nevada</option><option value="NY">New York</option><option value="OH">Ohio</option><option value="OK">Oklahoma</option><option value="OR">Oregon</option><option value="PA">Pennsylvania</option><option value="RI">Rhode Island</option><option value="SC">South Carolina</option><option value="SD">South Dakota</option><option value="TN">Tennessee</option><option value="TX">Texas</option><option value="UT">Utah</option><option value="VA">Virginia</option><option value="VT">Vermont</option><option value="WA">Washington</option><option value="WI">Wisconsin</option><option value="WV">West Virginia</option><option value="WY">Wyoming</option><option value="|--">|--</option><option value="AA">Armed Forces (Americas)</option><option value="AE">Armed Forces (Europe, Canada, Middle East, Africa)</option><option value="AP">Armed Forces (Pacific)</option><option value="AS">American Samoa</option><option value="MH">Marshall Islands</option><option value="MP">Northern Mariana Islands</option><option value="PR">Puerto Rico</option><option value="VI">Virgin Islands</option></select> </div><input type="hidden" name="submitted[device_os]" value="" /> <div class="form-item webform-component webform-component-textfield control-group" id="webform-component-sbp-zip"> <label for="edit-submitted-sbp-zip">Postal Code </label> <input class="input-medium form-text" type="text" id="edit-submitted-sbp-zip" name="submitted[sbp_zip]" value="" size="60" maxlength="128" /> </div><input type="hidden" name="submitted[device_browser]" value="" /> <input type="hidden" name="submitted[origin_nid]" value="" /> <input type="hidden" name="submitted[origin_form_name]" value="" /> <input type="hidden" name="submitted[secure_prepop_autofilled]" value="0" /> <input type="hidden" name="submitted[utm_source]" value="" /> <input type="hidden" name="submitted[gs_flag]" value="0" /> <input type="hidden" name="submitted[utm_medium]" value="" /> <input type="hidden" name="submitted[field_sbp_referrer_long]" value="" /> <input type="hidden" name="submitted[utm_term]" value="" /> <input type="hidden" name="submitted[field_sbp_initial_referrer_long]" value="" /> <input type="hidden" name="submitted[utm_content]" value="" /> <input type="hidden" name="submitted[field_form]" value="" /> <input type="hidden" name="submitted[utm_campaign]" value="" /> <input type="hidden" name="submitted[field_form_url]" value="" /> <input type="hidden" name="submitted[eml_name]" value="" /> <input type="hidden" name="submitted[eml_id]" value="" /> <input type="hidden" name="submitted[ms_off]" value="" /> <input type="hidden" name="submitted[ms_direct]" value="" /> <input type="hidden" name="submitted[social_referer_transaction]" value="" /> <input type="hidden" name="submitted[p2p_comm_ms]" value="" /> <input type="hidden" name="submitted[p2p_comm_id]" value="" /> <input type="hidden" name="submitted[p2p_pcid]" value="" /> <input type="hidden" name="submitted[sbp_zip_plus_four]" value="" /> <input type="hidden" name="submitted[originating_content_type]" value="" /> <input type="hidden" name="submitted[emailsrc]" value="ADV" /> <input type="hidden" name="submitted[springboard_adv_opt_in]" value="1" /> <input type="hidden" name="submitted[sfmc_s]" value="" /> <input type="hidden" name="submitted[cmp]" value="" /> <input type="hidden" name="details[sid]" /> <input type="hidden" name="details[page_num]" value="1" /> <input type="hidden" name="details[page_count]" value="1" /> <input type="hidden" name="details[finished]" value="0" /> <input type="hidden" name="form_build_id" value="form-rCJ-utrHqFcgagnHhXAdNSTEyI-i6FNlwpVf3oe1BQI" /> <input type="hidden" name="form_id" value="webform_client_form_2049" /> <input type="hidden" name="springboard_fraud_token" value="" /> <input type="hidden" name="springboard_fraud_js_detect" value="" /> <div class="form-actions form-wrapper" id="edit-actions"><input class="btn" type="submit" id="edit-submit" name="op" value="Sign-up Now" /></div></form> </div> </div> </div> </div> </div> </main><div id="footer-goal"></div> <footer><div class="container"> <div class="links"> <a href="https://www.aarp.org/about-aarp/privacy-policy/">Privacy Policy</a> <a href="https://www.aarp.org/about-aarp/terms-of-service/">Terms of Service</a> <a href="https://www.aarp.org/about-aarp/aarp-website-copyright-information/">Copyright Information</a> <a href="https://aarp.wirewheel.io/privacy-page/5df8f8398bd1e80013b7f762/">Do Not Sell My Personal Information</a> <a href="https://aarp.wirewheel.io/privacy-page/5df8f8398bd1e80013b7f762/">Your California Privacy Rights</a> </div> </div> </footer> <script type="text/javascript"> <!--//--><![CDATA[//><!-- delete(Drupal.settings.ajaxPageState.css); //--><!]]> </script> </body> </html>