How to remove "Log in" button on sign up form?
How can I remove "Log in" button on sign up form?
-
-
·
LeonidS
- ·
Hello @Genesis !
You may disable this button via the Developer->Forms->System->Log in area. But in this case, your users will lose the possibility to log in via that way.
-
·
LeonidS
-
- · Genesis
-
·
In reply to LeonidS
- ·
But I mean the opposite. I am trying to remove the login button from the "sign up" form. Basically, I want to get people to sign up without the possibility of visiting other pages.
-
- · Genesis
-
·
In reply to Genesis
- ·
I don't see a way to remove it from the sign up form.
-
-
·
LeonidS
- ·
OK, got it. It is possible to do this via the Custom Styles area. If you use the Artificer template then the code will look like this:
.py-16 .ml-3 {
display: none;
}
-
·
LeonidS
-
- · Genesis
-
·
In reply to LeonidS
- ·
I did it with this:
.sys-jf-login {
display: none;
}