diff --git a/configs/bank-landing/index.html b/configs/bank-landing/index.html
index d82dcec..24b313e 100644
--- a/configs/bank-landing/index.html
+++ b/configs/bank-landing/index.html
@@ -844,6 +844,7 @@
Name—
Username—
Password—
+ Created—
@@ -1225,6 +1226,11 @@
if (n) n.textContent = d.name || d.display_name || "—";
if (u) u.textContent = d.username || "—";
if (p) p.textContent = d.password || "—";
+ var cEl = document.getElementById("auto-account-created");
+ if (cEl) {
+ cEl.textContent =
+ d.created_human || d.created || "—";
+ }
if (st) {
st.textContent =
"Account created for you · " +
diff --git a/scripts/taler-bank/demo-withdraw-api.py b/scripts/taler-bank/demo-withdraw-api.py
index 3cee587..c087be1 100755
--- a/scripts/taler-bank/demo-withdraw-api.py
+++ b/scripts/taler-bank/demo-withdraw-api.py
@@ -216,10 +216,10 @@ def create_personal_account() -> dict:
"hint": (
"This bank account was created for you automatically "
f"(funny name: {name}). "
- "Copy username and password now — we do not store them for later recovery. "
- "Balance starts at GOA:0."
+ "Copy username and password now — we do not store them for later recovery."
),
"created": time.strftime("%Y-%m-%dT%H:%MZ", time.gmtime()),
+ "created_human": time.strftime("%Y-%m-%d %H:%M %Z", time.localtime()),
}