로그인 모달에 메시지를 추가하는 방법은?

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

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

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:

Thanks guys! That’s what I needed.