🐛 fix: update repository links and add environment configuration for admin and user apps

This commit is contained in:
web
2025-11-28 17:53:06 -08:00
parent 2c7ad08e38
commit 4c774871a8
12 changed files with 149 additions and 99 deletions
@@ -106,10 +106,22 @@ export default function EmailAuthForm() {
<>
<div className="mb-11 text-center">
<h1 className="mb-3 font-bold text-2xl">
{t(`${type || "check"}.title`)}
{type === "login"
? t("login.title", "Login")
: type === "register"
? t("register.title", "Register")
: type === "reset"
? t("reset.title", "Reset Password")
: t("check.title", "Verify")}
</h1>
<div className="font-medium text-muted-foreground">
{t(`${type || "check"}.description`)}
{type === "login"
? t("login.description", "Enter your credentials to continue")
: type === "register"
? t("register.description", "Create a new account")
: type === "reset"
? t("reset.description", "Reset your password")
: t("check.description", "Verify your identity")}
</div>
</div>
{UserForm}