diff --git a/configs/bank-landing/index.html b/configs/bank-landing/index.html
index fe027c6..d82dcec 100644
--- a/configs/bank-landing/index.html
+++ b/configs/bank-landing/index.html
@@ -827,8 +827,7 @@
Own bank account?
We can create a personal bank account for you automatically
- (you do not pick a username or password). Balance starts at
- GOA:0 — separate from the shared pool.
+ (you do not pick a username or password) — separate from the shared pool.
@@ -839,13 +838,12 @@
Created for you.
Copy these credentials now — they are not stored for recovery.
- Login at the bank UI; balance is GOA:0 .
+ Login at the bank UI.
Name —
Username —
Password —
-
Balance GOA:0
@@ -1224,17 +1222,14 @@
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 · " +
(d.name || d.username || "") +
- " · save username & password · balance " +
- (d.balance || "GOA:0");
+ " · save username & password";
}
/* Fancy QR_Taler: encode bank UI URL (login with credentials above) */
var qrBlock = document.getElementById("auto-account-qr-block");