From 95626baf0f7d5e9616afa298da39d4b2d58a00fa Mon Sep 17 00:00:00 2001 From: eti Date: Thu, 25 Jun 2026 21:20:20 +0200 Subject: [PATCH] appview/signup: improve signup success message visibility ![](https://x.eti.tf/b9c4100.png) resolves [TAN-525](https://linear.app/tangled/issue/TAN-525/improve-login-flow-success-message) Signed-off-by: eti --- appview/signup/signup.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/appview/signup/signup.go b/appview/signup/signup.go index ee51d402..2731ce0c 100644 --- a/appview/signup/signup.go +++ b/appview/signup/signup.go @@ -332,9 +332,13 @@ func (s *Signup) executeSignupTransaction(ctx context.Context, username, passwor // if we get here, we've successfully created the account and added the email success = true - s.pages.NoticeHTMLWithClears(w, "signup-msg", fmt.Sprintf(`Account created successfully. You can now - login - with %s.tngl.sh.`, username), "signup-error") + s.pages.NoticeHTMLWithClears(w, "signup-msg", fmt.Sprintf(` +
+ Account created successfully. +
+ You can now login with %s.tngl.sh. +
+ `, username), "signup-error") // clean up inflight signup asynchronously go func() { -- 2.51.2