Files
spend-sparrow/internal/authentication/template/verify_response.templ
Tim Wundenberg 1db5c48553
Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled
wip
2025-12-24 08:12:26 +01:00

30 lines
649 B
Plaintext

package template
templ VerifyResponseComp(isVerified bool) {
<main>
<div class="flex flex-col items-center justify-center h-screen">
if isVerified {
<h2 class="text-6xl mb-10">
Your email has been verified
</h2>
<p class="text-lg text-center">
You have completed the verification process. Thank you!
</p>
<a class="mt-8" href="/">
Go Home
</a>
} else {
<h2 class="text-6xl mb-10">
Error during verification
</h2>
<p class="text-lg text-center">
Please try again by sign up process
</p>
<a class="mt-8" href="/auth/signup">
Sign Up
</a>
}
</div>
</main>
}