CINXE.COM

Login Form

<!DOCTYPE HTML> <html><head><title>Login Form</title><script src="/static/111213/js/perf/stub.js" type="text/javascript"></script><script src="/static/111213/js/functions.js" type="text/javascript"></script><script src="/jslibrary/946684800254/sfdc/main.js" type="text/javascript"></script><script src="/jslibrary/jslabels/946684800000/en_US.js" type="text/javascript"></script><script src="/static/111213/desktop/desktopAjax.js" type="text/javascript"></script><script src="/static/111213/js/picklist4.js" type="text/javascript"></script><script src="/jslibrary/946684800254/sfdc/VFState.js" type="text/javascript"></script><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/default/ie7/zen-componentsCompatible.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/default/ie7/elements.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/default/ie7/common.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/ie7/dStandard.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/1743386645000/Theme3/00D40000000N3Vc/00540000003HwlL/ie7/dCustom0.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/1743386645000/Theme3/00D40000000N3Vc/00540000003HwlL/ie7/dCustom1.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/1743386645000/Theme3/00D40000000N3Vc/00540000003HwlL/ie7/dCustom2.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/1743386645000/Theme3/00D40000000N3Vc/00540000003HwlL/ie7/dCustom3.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/default/ie7/extended.css" rel="stylesheet" type="text/css" /><link class="user" href="/sCSS/63.0/sprites/946684800000/Theme3/default/ie7/setup.css" rel="stylesheet" type="text/css" /><link class="user" href="/resource/1446086460000/CustomerAppNewHomepageStylesheets/stylesheet.css" rel="stylesheet" type="text/css" /><link class="user" href="/resource/1446086461000/EntypoIcons/css/entypo.css" rel="stylesheet" type="text/css" /><link class="user" href="/resource/1446086461000/EntypoIcons/css/animation.css" rel="stylesheet" type="text/css" /><script>(function(UITheme) { UITheme.getUITheme = function() { return UserContext.uiTheme; }; }(window.UITheme = window.UITheme || {}));</script></head><body> <script> <script> // JC/FF ANLSI-6529 need to bind enter key to login button function replaceEnter(e){ if (e.keyCode == 13){ var allElements = document.getElementsByTagName('*'); for (var i = 0; i < allElements.length; i++){ if (allElements[i].id.indexOf("j_id0:lic:j_id9:btn-buy-license") !=-1){ allElements[i].click(); } } return false; }else{ return true; } } window.onkeypress = replaceEnter; // START GDPR Google Analytics Tracking // Google Analytics (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-2283281-1', 'auto'); window.onload = function () { window.addEventListener('cookieBannerOpenFirstTime', function (event) { // Event = Cookie Preferences Banner has been opened first time // Call GA function (Cookie Preferences Banner has been opened first time) ga('send', 'pageview','/Cookie banner modal'); console.log('Cookie Preferences Center has been opened first time, call GA'); }); var cookieManager = new CookieManager(); window.addEventListener('cookiePreferencesSubmitedFirstTime', function (event) { // Event = Cookie Preferences were submited first time ga('send', 'pageview','/Cookie banner modal- submit-preferences'); console.log('Cookie Preferences were submited first time, call GA'); }); } /* Cookie Manager */ function CookieManager() { const INIT_PREFERENCES_CENTER = "initCookiePreferencesCenter"; // cookie's name for creating GA events const NUM_ADVERTISING = 3; // positive answer for advertising cookie = 3 const NAME_TRUSTARC_COOKIE = "notice_preferences"; // cookie's name from TrustArc const VALUE_ALLOWING_ADVERT_COOKIE = "2:"; // value of advertising cookie from TrustArc const DOMAIN_NAME = "ascap.com"; // domain's name for TrustArc const DOMAIN_NAME_COOKIE = getCurrenDomain(); // domain's name for Cookie initFirstVisitEvent(); // init events for GA initConsentManager(); // initialisation of cookie preferences center // Method's: /* @method getCurrenDomain * @return {String} */ function getCurrenDomain() { var currentDomainName = "ascap.com"; const domains = ["songwize.com", "ascapfoundation.org"]; const fullDomainName = document.domain; domains.some(function (domain) { return (~fullDomainName.indexOf(domain)) ? ((currentDomainName = domain), true) : false; }); return '.' + currentDomainName; } /* isItFirstVisitPage * @return {Boolen} = 'false': It is not first visit of website * 'true': It's first visit of website */ function isItFirstVisitPage() { return isEmptyOrNull(readCookie(INIT_PREFERENCES_CENTER)); // Has website ever been opened by the client } /* isPreferncesCookieNotSubmited * @return {Boolen} = 'false': Preferences Cookie was submited * 'true': Preferences Cookie was not submited */ function isPreferncesCookieNotSubmited() { return readCookie(INIT_PREFERENCES_CENTER) == 'false'; // Cookie Preferences were not submited } /* initFirstVisitEvent - Init Event for GA */ function initFirstVisitEvent() { if (isItFirstVisitPage()) { createCookie(INIT_PREFERENCES_CENTER, "false", 90, DOMAIN_NAME_COOKIE); // Website has been opened first time -> create cookie 'initPreferencesCenter' // Create Event "Cookie Preferences Banner has been opened first time" var cookieBannerEvent = document.createEvent("Event"); cookieBannerEvent.initEvent("cookieBannerOpenFirstTime", true, true); document.dispatchEvent(cookieBannerEvent); } } /* getConsentManagerCookie - Get Consent Manager Cookie * @return {String} */ function getConsentManagerCookie() { return readCookie(NAME_TRUSTARC_COOKIE); } /* getAdvertisingCookiePreference - Get advertising cookie preference. * @return {Boolen} = 'false': Advertising is not allowed. * 'true': Advertising is allowed. */ function getAdvertisingCookiePreference() { return (getConsentManagerCookie() == VALUE_ALLOWING_ADVERT_COOKIE); } /* initConsentManager - Init Consent Manager * */ function initConsentManager() { var apiObject = { PrivacyManagerAPI: { action: "getConsent", timestamp: new Date().getTime(), self: DOMAIN_NAME } }; var json = JSON.stringify(apiObject); window.top.postMessage(json, "*"); window.addEventListener("message", ConsentManagerMessageHandler, false); // set event handler to retrieve notifications from Consent Manager } /* ConsentManagerMessageHandler - * Consent Manager Message Handler. */ function ConsentManagerMessageHandler(e) { var answerConsentManager = getAdvertisingConsentDecision(DOMAIN_NAME); if (answerConsentManager !== null) { // if Consent Manager answers if ((isPreferncesCookieNotSubmited()) && (!isEmptyOrNull(getConsentManagerCookie()))) { // Cookie Preferences has been submited first time setCookie(INIT_PREFERENCES_CENTER, "true", 90, DOMAIN_NAME_COOKIE); var cookieBannerEvent = document.createEvent("Event"); cookieBannerEvent.initEvent("cookiePreferencesSubmitedFirstTime", true, true); document.dispatchEvent(cookieBannerEvent); } } } /* getAdvertisingConsentDecision - Get Advertising Consent Decision from TrustArc. @return {Boolen}: null - TrustArc doesn't answer true - Advertising Cookies are Allowed false - Advertising Cookies are not Allowed */ function getAdvertisingConsentDecision(domain) { var advertisingConsentDecision = null; // TrustArc doesn't answer == null if (isConsentManagerReady()) { var answer = truste.cma.callApi("getGDPRConsentDecision", domain); // answer from TrustArc var str = answer.consentDecision.join(); advertisingConsentDecision = (~str.indexOf(NUM_ADVERTISING)) ? true : false; } return advertisingConsentDecision; } /* isConsentManagerReady - Check of Consent Manager (ready or not). @return {Boolen}: true - ready false - not ready */ function isConsentManagerReady() { return (!isEmptyOrNull(truste)) && ('cma' in truste) && ('callApi' in truste.cma); } /* readCookie - read a cookie * @argument {String} name - cookie name. * @returns {Object} - cookie. */ function readCookie(name) { return (document.cookie.match('(^|;) *' + name + '=([^;]*)') || "")[2]; } /* createCookie - create a new cookie * @argument {String} name - cookie name. * @argument {String} value - cookie's value. * @argument {number} expireTime - days to expire date. * @argument {String} domain */ function createCookie(name, value, expireTime, domain) { var expires = getCookieExpireTime(expireTime); if (!isEmptyOrNull(domain)) { domain = ";domain=" + domain } document.cookie = name + "=" + (value || "") + expires + "; path=/" + domain; } /* deleteCookie - delete a cookie * @argument {String} name - cookie name. */ function deleteCookie(name) { createCookie(name, "", { expires: -1 }) } /* getCookieExpireTime * @argument {number} expireTime - days to expire date. */ function getCookieExpireTime(expireTime) { var expires = ""; if (expireTime) { var date = new Date(); date.setTime(date.getTime() + (expireTime * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } return expires; } /* setCookie - set new cookie's value * @argument {String} name - cookie name. * @argument {String} value - cookie's value. * @argument {number} expireTime - days to expire date. * @argument {String} domain */ function setCookie(name, value, expireTime, domain) { var expires = getCookieExpireTime(expireTime); if (domain != '') { domain = ";domain=" + domain } document.cookie = name + "=" + escape(value) + expires + "; path=/" + domain; } /* isEmptyOrNull - check for empty object, variable. null, undefined, error all return true. Returns false if a value is found. * @argument {object} testString. */ function isEmptyOrNull(testString) { try { if (typeof testString == 'string') { //is a string if (testString == null || testString == 'null') { return true; } else if (testString.trim() == '') { return true; } else if (testString.trim() == 'undefined') { return true; } else { return false; } } else if (typeof testString == 'undefined') { return true; } else if (typeof testString == 'object' && testString == null) { return true; } else { return false; } } catch (e) { return true; } } } // END GDPR Google Analytics Tracking <!--****************************************--> (function(){var g=function(e,h,f,g){ this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g+ "&t=" + (new Date()).getTime();document.body&&document.body.appendChild(a)}}; this.start=function(){var a=this;window.addEventListener?window.addEventListener("load",function(){a.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){a.go()})}}; try{(new g(100,"r","QSI_S_ZN_87YXk44OmKRP7BX","https://zn87yxk44omkrp7bx-ascap.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_87YXk44OmKRP7BX")).start()}catch(i){}})(); <!--****************************--> </script> <head> <meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE" /> <meta HTTP-EQUIV="Expires" content="Mon, 01 Jan 1990 12:00:00 GMT" /> <div id="ZN_87YXk44OmKRP7BX"></div> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title id="title">ASCAP Customer App</title> <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" /> <meta content="width=device-width, initial-scale=1.0" name="viewport" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script async="async" src="//consent.truste.com/notice?domain=ascap.com&amp;c=teconsent&amp;gtm=1&amp;text=true"></script> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" media="screen" rel="stylesheet" type="text/css" /> <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" /> <style> body {font-family: 'Roboto', sans-serif;} </style> <style> html, body { /*display:flex; flex-direction:column;*/ height:100%; } #mainbackground { background-color: #ECECEC; height:100vh; } #sidebarbackground { background-color: #F6F6F6; height:100%; } .navbackground { background-color: #FBFBFB; width: 98%; } .whitebackground { background-color:white; } .panestyles { background-color: white; margin-left: 15px; display: inline-block; width: 98%; padding-left:15px; padding-right:15px; } @font-face { font-family: 'EntypoRegular'; src: url('../fonts/entypo.eot'); src: url('../fonts/entypo.eot?#iefix') format('embedded-opentype'), url('../fonts/entypo.woff') format('woff'), url('../fonts/entypo.ttf') format('truetype'), url('../fonts/entypo.svg#EntypoRegular') format('svg'); font-weight: normal; font-style: normal; } .sidebarheader { font-size:10px; color: #1F71C7; font-weight: bold; } .sidebartext { font-size:12px; } .sidebarnum { font-size:14px } .mainlabel { color:#898989; font-size:12px; text-transform: uppercase; } .dataCol {padding:0; padding-right:75px !important;} td.dataCol.last {padding:0 !important;} td {padding:0px !important;} #dataTableText {display:none;} .handsontable table.htCore {width:100%;} .datepicker {z-index: 1151 !important;} .modalfield {width:100%;} .modalfield2 {width:100%; margin-bottom:15px;} .datepicker {z-index: 1151 !important;} #attributeName {margin-left:30px;} #linkTitle {text-decoration:underline; color:#1F71C7;} .headerItem {padding-top:30px;} .colorBar {height:10px; width:20%; display: inline-block;} .confirmed {font-style: italic; color:#ABABAB;} .breadcrumb>li+li:before {content:">" !important;} @media only screen and (max-width : 768px) { .container-fluid {padding-left:0px !important; padding-right:0px !important;} .mobicon {font-size:25px;} #mainbackground {background-color:white; height:100%;} body {padding-bottom: 70px !important;} .mobaccordion {margin-bottom:60px;} .mobcontact {margin-bottom:20px;} #account {padding-bottom:70px;} #policies {padding-bottom:70px;} #billing {padding-bottom:70px;} #reports {padding-bottom:70px;} #dataTable {display:none;} #dataTableText {display:block;} .modalfield {width:200px;} .headerItem {padding-top:0;} .colorBar {height:10px; width:19.18%; display: inline-block;} } .nlsFooter{ color:#ccc; font-size:12px; line-height:30px; margin:10px 0px 10px 25px; } a.nlsFooter:hover { color:#666; font-size:12px; line-height:30px; margin:10px 0px 10px 25px; text-decoration:none; } /*Warning box*/ #notice-tls { display: block; max-width: 600px; margin-left: 10%; } @media (min-width: 768px) and (max-width: 1120px) { #notice-tls { margin-left: 5%; } } @media (max-width: 768px) { #notice-tls { margin-left: 10px; } } #notice-tls .warning-wrapper { background-color: #EFF4FF; padding: 15px; font-size: 15px; color: #00519C; border-radius: 10px; border: 1px solid #00519C; } #notice-tls .warning-label { font-size: 30px; width: 36px; height: 36px; padding-top: 5px; float: left; margin-right: 10px; text-align: center; font-weight: bold; line-height: 24px; border-radius: 27px; background-color: #00519C; color: #FFF; } #notice-tls a { font-size: 14px; font-weight: bold; color: #00519C; } #notice-tls a.notice-tls-clear { position: absolute; right: 0; top: 0; display: block; padding: 6px 10px; font-size: 17px; } #notice-tls .warning-label-wrap { line-height: 36px; } #notice-tls .warning-text { margin-left: 46px; } #notice-tls .warning-text p { margin-bottom: 10px; } /*Icon links*/ table.icon-links { width: 100%; max-width: 180px; } .icon-links td { width: 50%; } .icon-links span.icon { font-size: 50px; text-align: center; } .icon-links .login-assistance-btncontainer { text-align: center; } .icon-links .login-assistance-btncontainer a { color: #015ba7; } .icon-links .login-assistance-btncontainer a:hover { text-decoration: none; color: #444; } </style> </head> <body> <form id="j_id0:lic" name="j_id0:lic" method="post" action="https://alp.ascap.com/Login?startURL=%2F%3Fnav%3Dlicensing-radio&amp;refURL=http%3A%2F%2Falp.ascap.com%2FLogin" class="form-horizontal" enctype="application/x-www-form-urlencoded"> <input type="hidden" name="j_id0:lic" value="j_id0:lic" /> <div class="container-fluid" style="padding-left:0; padding-right:0; margin-left:0; margin-right:0;"> <div class="row clearfix" style="background-color:white;"> <div class="col-md-12 column"> <div class="col-xs-12 col-md-4"><img src="/resource/1449625503000/CustomerAppNewHomepageImagesv2/ASCAP-logo.jpg" /> </div> </div> <div class="row clearfix" style="margin-right:0;"> <div class="col-xs-12 col-md-12" id="rainbowBar" style="height:10px; padding-left:0; padding-right:0;"> <div class="colorBar" style="background-color:#004185;"></div><div class="colorBar" style="background-color:#1F71C7"></div><div class="colorBar" style="background-color:#429CE8;"></div><div class="colorBar" style="background-color:#E54243"></div><div class="colorBar" style="background-color:#AE3347"></div> </div> </div> </div><script> if(!window.sfdcPage) { window.sfdcPage = new ApexPage(); }UserContext.initialize({"ampm":["AM","PM"],"isAccessibleMode":false,"salesforceURL":"https://alp.ascap.com?startURL=%2F%3Fnav%3Dlicensing-radio&refURL=http%3A%2F%2Falp.ascap.com%2FLogin","dateFormat":"M/d/yyyy","dayPeriods":[],"language":"en_US","locale":"en_US","dateTimeFormat":"M/d/yyyy h:mm a","labelLastModified":"946684800000","today":"4/7/2025 1:01 PM","userPreferences":[{"index":112,"name":"HideInlineEditSplash","value":false},{"index":114,"name":"OverrideTaskSendNotification","value":false},{"index":115,"name":"DefaultTaskSendNotification","value":false},{"index":119,"name":"HideUserLayoutStdFieldInfo","value":false},{"index":116,"name":"HideRPPWarning","value":false},{"index":87,"name":"HideInlineSchedulingSplash","value":false},{"index":88,"name":"HideCRUCNotification","value":false},{"index":89,"name":"HideNewPLESplash","value":false},{"index":90,"name":"HideNewPLEWarnIE6","value":false},{"index":122,"name":"HideOverrideSharingMessage","value":false},{"index":91,"name":"HideProfileILEWarn","value":false},{"index":93,"name":"HideProfileElvVideo","value":false},{"index":97,"name":"ShowPicklistEditSplash","value":false},{"index":92,"name":"HideDataCategorySplash","value":false},{"index":128,"name":"ShowDealView","value":false},{"index":129,"name":"HideDealViewGuidedTour","value":false},{"index":132,"name":"HideKnowledgeFirstTimeSetupMsg","value":false},{"index":104,"name":"DefaultOffEntityPermsMsg","value":false},{"index":135,"name":"HideNewCsnSplash","value":false},{"index":101,"name":"HideBrowserWarning","value":false},{"index":139,"name":"HideDashboardBuilderGuidedTour","value":false},{"index":140,"name":"HideSchedulingGuidedTour","value":false},{"index":180,"name":"HideReportBuilderGuidedTour","value":false},{"index":183,"name":"HideAssociationQueueCallout","value":false},{"index":194,"name":"HideQTEBanner","value":false},{"index":270,"name":"HideIDEGuidedTour","value":false},{"index":282,"name":"HideQueryToolGuidedTour","value":false},{"index":196,"name":"HideCSIGuidedTour","value":false},{"index":271,"name":"HideFewmetGuidedTour","value":false},{"index":272,"name":"HideEditorGuidedTour","value":false},{"index":205,"name":"HideApexTestGuidedTour","value":false},{"index":206,"name":"HideSetupProfileHeaderTour","value":false},{"index":207,"name":"HideSetupProfileObjectsAndTabsTour","value":false},{"index":213,"name":"DefaultOffArticleTypeEntityPermMsg","value":false},{"index":214,"name":"HideSelfInfluenceGetStarted","value":false},{"index":215,"name":"HideOtherInfluenceGetStarted","value":false},{"index":216,"name":"HideFeedToggleGuidedTour","value":false},{"index":268,"name":"ShowChatterTab178GuidedTour","value":false},{"index":275,"name":"HidePeopleTabDeprecationMsg","value":false},{"index":276,"name":"HideGroupTabDeprecationMsg","value":false},{"index":224,"name":"HideUnifiedSearchGuidedTour","value":false},{"index":226,"name":"ShowDevContextMenu","value":true},{"index":227,"name":"HideWhatRecommenderForActivityQueues","value":false},{"index":228,"name":"HideLiveAgentFirstTimeSetupMsg","value":false},{"index":232,"name":"HideGroupAllowsGuestsMsgOnMemberWidget","value":false},{"index":233,"name":"HideGroupAllowsGuestsMsg","value":false},{"index":234,"name":"HideWhatAreGuestsMsg","value":false},{"index":235,"name":"HideNowAllowGuestsMsg","value":false},{"index":236,"name":"HideSocialAccountsAndContactsGuidedTour","value":false},{"index":237,"name":"HideAnalyticsHomeGuidedTour","value":false},{"index":238,"name":"ShowQuickCreateGuidedTour","value":false},{"index":245,"name":"HideFilePageGuidedTour","value":false},{"index":250,"name":"HideForecastingGuidedTour","value":false},{"index":251,"name":"HideBucketFieldGuide","value":false},{"index":263,"name":"HideSmartSearchCallOut","value":false},{"index":273,"name":"ShowForecastingQuotaAttainment","value":false},{"index":280,"name":"HideForecastingQuotaColumn","value":false},{"index":301,"name":"HideManyWhoGuidedTour","value":false},{"index":298,"name":"HideFileSyncBannerMsg","value":false},{"index":299,"name":"HideTestConsoleGuidedTour","value":false},{"index":302,"name":"HideManyWhoInlineEditTip","value":false},{"index":303,"name":"HideSetupV2WelcomeMessage","value":false},{"index":312,"name":"ForecastingShowQuantity","value":false},{"index":313,"name":"HideDataImporterIntroMsg","value":false},{"index":314,"name":"HideEnvironmentHubLightbox","value":false},{"index":316,"name":"HideSetupV2GuidedTour","value":false},{"index":317,"name":"HideFileSyncMobileDownloadDialog","value":false},{"index":322,"name":"HideEnhancedProfileHelpBubble","value":false},{"index":328,"name":"ForecastingHideZeroRows","value":false},{"index":330,"name":"HideEmbeddedComponentsFeatureCallout","value":false},{"index":341,"name":"HideDedupeMatchResultCallout","value":false},{"index":340,"name":"HideS1BrowserUI","value":false},{"index":346,"name":"HideS1Banner","value":false},{"index":358,"name":"HideEmailVerificationAlert","value":false},{"index":354,"name":"HideLearningPathModal","value":false},{"index":359,"name":"HideAtMentionsHelpBubble","value":false},{"index":368,"name":"LightningExperiencePreferred","value":false},{"index":373,"name":"PreviewLightning","value":false},{"index":281,"name":"HideMSPPopup","value":false}],"networkId":"0DB40000000TNiY","uiTheme":"Theme3","uiSkin":"Theme3","userName":"do-not-reply_licensing@ascap.com.prod","userId":"00540000003HwlL","isCurrentlySysAdminSU":false,"renderMode":"RETRO","startOfWeek":"1","vfDomainPattern":"radiolicensing--(?:[^.]+).vf.force.com","auraDomain":"radiolicensing.lightning.force.com","useNativeAlertConfirmPrompt":false,"orgPreferences":[{"index":257,"name":"TabOrganizer","value":true},{"index":113,"name":"GroupTasks","value":true}],"isDefaultNetwork":false,"timeFormat":"h:mm a"}); </script><div class="apexp"><div id="j_id0:lic:j_id9" class="bPageBlock brandSecondaryBrd apexDefaultPageBlock secondaryPalette"><div class="pbBody"><span id="j_id0:lic:j_id9:j_id10"></span> <header> <br /><br /> <h2><span style="color:#004185;">Login Here</span></h2> </header> <br /><br /> <br /> <fieldset id="fsBiz"> <div Class="form-group"> <label class="col-xs-2 control-label" for="UserName">UserName</label> <div class="col-xs-6 col-md-4 standardInput" id="UserName"><input type="text" name="j_id0:lic:j_id9:j_id51" class="form-control bizInput bizNameInput typeahead" required="required" title="Please enter valid User name in an Email format" pattern="[a-zA-Z0-9!#$%&amp;'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&amp;'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?" placeholder="Email Address you used for registration" /> </div> </div> <div Class="form-group"> <label class="col-xs-2 control-label" for="Password">Password</label> <div class="col-xs-6 col-md-4 standardInput" id="Password"><input type="password" name="j_id0:lic:j_id9:j_id53" value="" title="Please enter valid Password" class="form-control bizInput typeahead" pattern="^[0-9a-zA-Z_]{8,}$" data-required="true" placeholder="Please Enter 8-12 Character Password" /> </div> </div> <div class="form-group" style="margin-bottom: 0px;"> <div class=" col-sm-2 control-label"><input id="j_id0:lic:j_id9:btn-buy-license" type="submit" name="j_id0:lic:j_id9:btn-buy-license" value="Login" style="background-image:none;!important float:right;" class="btn btn btn-primary btn-xs" /> </div> <div class="col-sm-2 control-label"><a href="/ForgotPassword" style="color: #428bca;float:left;">Forgot Your Password?</a> </div> </div> </fieldset> <table> <tr> <td> <span class="instructions"> <br /><br /> <h4 style="text-align:center"> <span style="color:#004185;">Not a Registered User? </span> </h4> <br /><br /> <div> Please<a href="/Registration" style="color: #428bca;"> register here</a> <br /> for your ASCAP License account. </div> </span> </td> <td><div style="margin-left: 100px;"></div></td> <td> <span class="instructions"> <br /><br /> <h4 style="text-align:center"> <span style="color:#004185;">Don't have an account? </span> </h4> <br /><br /> <div> Email the ASCAP licensing team at <br /> <a href="mailto:licensing@ascap.com">licensing@ascap.com</a> or call 1-800-99-ASCAP (1-800-992-7227) for assistance. </div> </span> </td> </tr> <tr> <td></td> <td><div style="margin-left: 100px;"></div></td> <td> <br /><br /> <span class="instructions"> <h4> <span> <a href="javascript:()" onmouseup="window.open('http://www.ascap.com/licensing/licensingfaq.aspx#radio','', 'left=0,top=0,menubar=no,toolbar=no,width=650');" style="color:#428bca!important;" target="_parent"> Frequently Asked Questions </a> </span> </h4> <br /><br /> <div> </div> </span> </td> </tr> </table></div><div class="pbFooter secondaryPalette"><div class="bg"></div></div></div></div> </div> <div id="footer" style=" position: fixed;bottom: 3;left: 0;width: 100%;overflow:hidden;margin-top: 0px;height: auto;"><span id="j_id0:lic:j_id67"> <style> .nlsFooter{ color:#ccc; font-size:12px; line-height:30px; margin:10px 0px 10px 25px; } .nlsFooterRight{ color:#ccc; font-size:12px; line-height:30px; margin:0px 0px 0px 25px; float:right; } .nlsFooter a { color: #ccc !important; text-decoration: none !important; } #footer { bottom: 0; width: 100%; height: 35px; left:0; } #footer {clear: both; } a.nlsFooter:hover { color:#666; font-size:12px; line-height:30px; margin:10px 0px 10px 25px; text-decoration:none; } </style> <div class="row clearfix" id="footer" style="margin-right:0;"> <div class="row clearfix" style="margin-right:0;height:13px;"> <div class="col-xs-12 col-md-12" id="rainbowBar" style="height:10px; padding-left:0; padding-right:0;"> <div class="colorBar" style="background-color:#004185;"></div><div class="colorBar" style="background-color:#1F71C7"></div><div class="colorBar" style="background-color:#429CE8;"></div><div class="colorBar" style="background-color:#E54243"></div><div class="colorBar" style="background-color:#AE3347"></div> </div> </div> <div class="col-md-12 column" style="background-color:#222;"> <a class="nlsFooter" href="https://www.ascap.com/help/legal/privacy-policy.aspx" target="_blank">Privacy Policy</a> <a class="nlsFooter" href="https://www.ascap.com/help/legal/cookie-policy.aspx" target="_blank">Cookie Policy</a> <span class="nlsFooter" id="teconsent"></span> <span class="nlsFooterRight">Copyright 2015 ASCAP</span> </div> </div> <div aria-hidden="true" aria-labelledby="#modal-terms_conditions_footer" class="modal fade" id="modal-terms_conditions_footer" role="dialog" style="height:80%;width:75%;margin:0 auto;display: none;overflow:hidden!important;"> <iframe id="termsIframeFooter" src="TermsandConditions?#zoom=110" style="width:100%;height:85%;background:white"></iframe> <div class="modal-footer" style="background:white;margin-top:-5px;"> <a class="btn btn-primary btn-s" data-dismiss="modal" href="#">Close</a> </div> </div> <script> </script></span> </div><div id="j_id0:lic:j_id76"></div> </form><span id="ajax-view-state-page-container" style="display: none"><span id="ajax-view-state" style="display: none"><input type="hidden" id="com.salesforce.visualforce.ViewState" name="com.salesforce.visualforce.ViewState" value="i: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" /><input type="hidden" id="com.salesforce.visualforce.ViewStateVersion" name="com.salesforce.visualforce.ViewStateVersion" value="202504041835340788" /><input type="hidden" id="com.salesforce.visualforce.ViewStateMAC" name="com.salesforce.visualforce.ViewStateMAC" value="AGV5SnViMjVqWlNJNklsTldUa05uVlRGSVJuSnVNRE40WmpKR1lXeHFRM2RWVDNFeE4xODBVRm8yU0dKbFZIRm5OWFpKVmtWY2RUQXdNMlFpTENKMGVYQWlPaUpLVjFRaUxDSmhiR2NpT2lKSVV6STFOaUlzSW10cFpDSTZJbnRjSW5SY0lqcGNJakF3UkRRd01EQXdNREF3VGpOV1kxd2lMRndpZGx3aU9sd2lNREpITVZjd01EQXdNREJqUW5CT1hDSXNYQ0poWENJNlhDSjJabk5wWjI1cGJtZHJaWGxjSWl4Y0luVmNJanBjSWpBd05UUXdNREF3TURBelNIZHNURndpZlNJc0ltTnlhWFFpT2xzaWFXRjBJbDBzSW1saGRDSTZNVGMwTkRBek1EZzNOekE1T1N3aVpYaHdJam93ZlE9PS4uVEw2T0NrM3FzRWhoZE95eDF0bWVjU2ZvOGlMTmVYTDdVbTJuVFlIV2wtdz0=" /></span></span> </body><script type="text/javascript">Sfdc.onReady(function(){ SfdcApp && SfdcApp.Visualforce && SfdcApp.Visualforce.VSManager && SfdcApp.Visualforce.VSManager.vfPrepareForms(["j_id0:lic"]); });</script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10