This repository has no description
0

Configure Feed

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

core / appview / pages / templates / user / fragments / signupSuccess.html
775 B 18 lines
1{{ define "user/fragments/signupSuccess" }} 2 <main 3 id="main" 4 hx-swap-oob="outerHTML" 5 class="w-full max-w-md px-7 mt-4 flex flex-col items-center gap-4 text-center" 6 > 7 <div class="flex items-center justify-center size-16 rounded-full bg-green-100 dark:bg-green-900/30 text-green-600 dark:text-green-400 animate-jump animate-once animate-duration-500 animate-ease-in-out"> 8 {{ i "check" "size-8" }} 9 </div> 10 <p class="text-lg dark:text-white">Account created successfully</p> 11 <a 12 href="/login?handle={{ .Handle }}" 13 class="btn-create w-full text-base hover:no-underline hover:text-white inline-flex items-center justify-center gap-1" 14 > 15 Continue to login {{ i "arrow-right" "size-4" }} 16 </a> 17 </main> 18{{ end }}