const ui=function(){function populatePlansUI(planType){let html="";const planTypeContainer=document.getElementById("management-plans-container");dataModel.managementData.forEach((item=>{const{planTitle:planTitle,monthlyPrice:monthlyPrice,info:info,featuresPlan:featuresPlan}=item;let plansSpecificationsHTML="";let infoTextHTML="";if(featuresPlan){featuresPlan.forEach((item=>{plansSpecificationsHTML+=`

${item}

`}))}if(info){infoTextHTML+=`

${info}

`}html+=`\n
\n
\n

${planTitle}

\n\n
\n

$${monthlyPrice}/mo.

\n
\n
\n\n
\n ${infoTextHTML}\n \n ${plansSpecificationsHTML}\n
\n
\n `}));if(planTypeContainer){planTypeContainer.innerHTML=html}}return{populatePlansUI:populatePlansUI}}();