commit b96a573b7662cb98affe955d4b93edd8baefce35
parent f94b20d2c401fc6b0793b0aeb76815306b9aee0f
Author: Sebastian <sebasjm@taler-systems.com>
Date: Mon, 12 Jan 2026 12:21:03 -0300
fix #10798
Diffstat:
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/paths/login/index.tsx b/packages/merchant-backoffice-ui/src/paths/login/index.tsx
@@ -140,6 +140,9 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
<label class="label">
<i18n.Translate>Username</i18n.Translate>
</label>
+ <span class="icon has-tooltip-right" data-tooltip={i18n.str`Instance name.`}>
+ <i class="mdi mdi-information" />
+ </span>
</div>
<div class="field-body">
<div class="field">
@@ -147,7 +150,7 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
<input
class="input"
type="text"
- placeholder={i18n.str`instance name`}
+ // placeholder={i18n.str`instance name`}
name="username"
onKeyPress={(e) =>
e.keyCode === 13 ? login.call() : null
@@ -166,6 +169,9 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
<label class="label">
<i18n.Translate>Password</i18n.Translate>
</label>
+ <span class="icon has-tooltip-right" data-tooltip={i18n.str`Instance password.`}>
+ <i class="mdi mdi-information" />
+ </span>
</div>
<div class="field-body">
<div class="field">
@@ -173,7 +179,7 @@ export function LoginPage({ showCreateAccount }: Props): VNode {
<input
class="input"
type="password"
- placeholder={i18n.str`current password`}
+ // placeholder={i18n.str`current password`}
name="token"
onKeyPress={(e) =>
e.keyCode === 13 ? login.call() : null