diff options
author | Sebastian <sebasjm@gmail.com> | 2023-07-12 15:42:27 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-07-12 15:42:43 -0300 |
commit | b7823407c04958b143c2c37d7b7e465bdd7d4895 (patch) | |
tree | b384eb5cc3347bfa08263ecbeeee71e7ebe61759 /packages/demobank-ui/src/pages/QrCodeSection.tsx | |
parent | 8c2fed4e1c9e09df2521898220f23c5f6b804cd2 (diff) |
mobile friendly
Diffstat (limited to 'packages/demobank-ui/src/pages/QrCodeSection.tsx')
-rw-r--r-- | packages/demobank-ui/src/pages/QrCodeSection.tsx | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/packages/demobank-ui/src/pages/QrCodeSection.tsx b/packages/demobank-ui/src/pages/QrCodeSection.tsx index 0229dd425..c27984569 100644 --- a/packages/demobank-ui/src/pages/QrCodeSection.tsx +++ b/packages/demobank-ui/src/pages/QrCodeSection.tsx @@ -51,19 +51,14 @@ export function QrCodeSection({ const { abortWithdrawal } = useAccessAnonAPI(); return ( <section id="main" class="content"> - <h1 class="nav">{i18n.str`Transfer to Taler Wallet`}</h1> + <h1 class="nav">{i18n.str`Charge your GNU Taler wallet`}</h1> <article> - <div class="qr-div"> - <p>{i18n.str`Use this QR code to withdraw to your mobile wallet:`}</p> + <div class="qr-div "> + <a href={talerWithdrawUri} class="pure-button pure-button-primary"> + <i18n.Translate>Continue with GNU Taler</i18n.Translate> + </a> + <p>{i18n.str`Or scan this QR code with your mobile to receive the coin in another device:`}</p> <QR text={talerWithdrawUri} /> - <p> - <i18n.Translate> - Click{" "} - <a href={talerWithdrawUri}>{i18n.str`this taler:// link`}</a> to - open your Taler wallet - </i18n.Translate>{" "} - </p> - <br /> <a class="pure-button btn-cancel" onClick={async (e) => { @@ -92,7 +87,7 @@ export function QrCodeSection({ } } }} - >{i18n.str`Abort`}</a> + >{i18n.str`Cancel`}</a> </div> </article> </section> |