frm
Well-known member
It would be nice if we could have dual phrases for connected accounts' button.
This is the macro used for both login and register, and an example of it with X:
X is barely noticeable, and it doesn't give the user much of a hint of what it does on the login page or registration page.
On sign up:

On log in:

I tried to edit them to appear like:


But, this will completely break the button:
There has to be a better method to explain what the buttons do, at least with X...
A new phrase
Or perhaps even a title overlay for what [[X] X] means so you get some insight on the button when you hover it? (Not helpful for mobile, but it's something)...
This is the macro used for both login and register, and an example of it with X:
HTML:
<xf:macro id="connected_account_macros::button"
arg-provider="{$provider}" />
X is barely noticeable, and it doesn't give the user much of a hint of what it does on the login page or registration page.
On sign up:

On log in:

I tried to edit them to appear like:


But, this will completely break the button:
HTML:
<xf:macro id="connected_account_macros::button"
arg-provider="Register using {$provider}" />
There has to be a better method to explain what the buttons do, at least with X...
A new phrase
login_with
and register_with
(example of login_with
) so that they can remain blank for how it is now and be used with both RTL/LTR buttons if we want a more informative connected account button?
HTML:
<xf:macro id="connected_account_macros::button"
arg-provider="{{ phrase('login_with') }}{$provider}" />
<!-- AND -->
<xf:macro id="connected_account_macros::button"
arg-provider="{$provider}{{ phrase('login_with') }}" />
Or perhaps even a title overlay for what [[X] X] means so you get some insight on the button when you hover it? (Not helpful for mobile, but it's something)...
Upvote
1