Hi RK,
What would the variation be between portals? I assume just images and branding?
Below is how i have done it in the past, i just give different URLs to different people, fairly simple to expand on and get setup. The below will change the background based on what URL is used to get to the page. Same logic can be implemented for any HTML, logos, forms, inputs, buttons etc.
{if $smarty.server.HTTP_HOST eq "portal.clearpass.com"}
{assign var="bg_image" value="external/galleria/slideshow/v2/2_bob.jpg"}
{elseif $smarty.server.HTTP_HOST eq "portal2.clearpass.com"}
{assign var="bg_image" value="external/galleria/slideshow/v2/4_landry.jpg"}
{else}
{assign var="bg_image" value="external/galleria/slideshow/v2/1_saadi.jpg"}
{/if}
<style type="text/css">
{literal}
body {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
min-height: 100vh;
{/literal}
background-image: url('{$bg_image}');
{literal}
}
{/literal}
</style>
Just incase you are not familiar, i put this in the HTML on the skin attached to the /guest login page.
Any questions, please let me know.
-------------------------------------------