Monorepo for Tangled tangled.org
5

Configure Feed

Select the types of activity you want to include in your feed.

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 <eti@eti.tf>

author
eti
committer
Tangled
date (Jun 26, 2026, 7:13 AM +0300) commit 95626baf parent 3f3b5523
+7 -3
+7 -3
appview/signup/signup.go
··· 332 332 // if we get here, we've successfully created the account and added the email 333 333 success = true 334 334 335 - s.pages.NoticeHTMLWithClears(w, "signup-msg", fmt.Sprintf(`Account created successfully. You can now 336 - <a class="underline text-black dark:text-white" href="/login">login</a> 337 - with <code>%s.tngl.sh</code>.`, username), "signup-error") 335 + s.pages.NoticeHTMLWithClears(w, "signup-msg", fmt.Sprintf(` 336 + <div class="w-full h-fit mt-4 p-4 bg-green-50 dark:bg-green-300 border border-green-200 dark:border-green-400 text-green-800 dark:text-green-900 rounded"> 337 + Account created successfully. 338 + <br/> 339 + You can now <a class="dark:text-black hover:dark:text-black underline" href="/login">login</a> with <code>%s.tngl.sh</code>. 340 + </div> 341 + `, username), "signup-error") 338 342 339 343 // clean up inflight signup asynchronously 340 344 go func() {