I am customizing our login experience using the New Universal Login pages with a Liquid html file. In order to customize the experience for different clients, I am using the Organization feature to check for organization ID before setting styling; however, I need a background image not background-color for an organization. Is there a way to override the Organization’s background-color setting with an image (set via Organizations > select org > branding > background-color)? If not, is there an alternative method to customizing login experiences for different clients? Not attached to using Organizations, really only using that for the potential of login experience customization.
Here’s my code in the login.liquid.html-
<style>
{% if organization.id == "org_id-here" %}
/* Client 1 */
body {
background-image: url('[bg-image-url-here]');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
{% else %}
...
</style>
Thanks!