How can I add a message to the login modal?

Hi there! I would like to be able to add a permanent message like the attached image. Please, how could I achieve that? Thanks!

1 Like

Simplest way is a css customization, using the before or after text Insertion option.

3 Likes

Like Jeff mentioned, CSS is the easiest way. Here is an example of what you could add to the common.scss

#login-form::before {
    content: "My Custom Message";
    color: red;
}

Which would give you this result:

image

6 Likes

Thanks guys! That’s what I needed.

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.