From 833567947aacea647598c7f6595f4df878c12fcd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Hern=C3=A2ni=20Marques?=
Date: Fri, 10 Jul 2026 16:14:00 +0200
Subject: [PATCH] bank landing: surface funny auto-account names in the UI
---
configs/bank-landing/index.html | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/configs/bank-landing/index.html b/configs/bank-landing/index.html
index efe53f0..fe027c6 100644
--- a/configs/bank-landing/index.html
+++ b/configs/bank-landing/index.html
@@ -842,6 +842,7 @@
Login at the bank UI; balance is GOA:0.
+ - Name
—
- Username
—
- Password
—
- Balance
GOA:0
@@ -1220,15 +1221,19 @@
.then(function (d) {
if (!d || !d.ok) throw new Error((d && d.error) || "create failed");
if (box) box.hidden = false;
+ var n = document.getElementById("auto-account-name");
var u = document.getElementById("auto-account-user");
var p = document.getElementById("auto-account-pass");
var b = document.getElementById("auto-account-bal");
+ if (n) n.textContent = d.name || d.display_name || "—";
if (u) u.textContent = d.username || "—";
if (p) p.textContent = d.password || "—";
if (b) b.textContent = d.balance || "GOA:0";
if (st) {
st.textContent =
- "Account created for you · save username & password · balance " +
+ "Account created for you · " +
+ (d.name || d.username || "") +
+ " · save username & password · balance " +
(d.balance || "GOA:0");
}
/* Fancy QR_Taler: encode bank UI URL (login with credentials above) */