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:
[CODE=html]
<xf:macro id="connected_account_macros::button"
arg-provider="{$provider}" />
[/CODE]
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:
[ATTACH=full]319730[/ATTACH]
On log in:
[ATTACH=full]319731[/ATTACH]
I tried to edit them to appear like:
[ATTACH=full]319733[/ATTACH]
[ATTACH=full]319732[/ATTACH]
But, this will completely break the button:
[CODE=html]
<xf:macro id="connected_account_macros::button"
arg-provider="Register using {$provider}" />
[/CODE]
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?
[CODE=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') }}" />
[/CODE]
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)...