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) */