diff --git a/autogpt_platform/frontend/src/app/(platform)/login/page.tsx b/autogpt_platform/frontend/src/app/(platform)/login/page.tsx index 629854c4d597..645635f51a8d 100644 --- a/autogpt_platform/frontend/src/app/(platform)/login/page.tsx +++ b/autogpt_platform/frontend/src/app/(platform)/login/page.tsx @@ -149,6 +149,7 @@ export default function LoginPage() { + Create a new account
@@ -188,6 +188,7 @@ export default function SignupPage() {
- - The provided email may not be allowed to sign up. - -
    -
  • - - - - AutoGPT Platform is currently in closed beta. You can join{" "} - + +
    + + The provided email may not be allowed to sign up. + + - the waitlist here - - . - -
  • -
  • - - - - Make sure you use the same email address you used to sign up for - the waitlist. - -
  • -
  • - - - - You can self host the platform, visit our{" "} - + + - GitHub repository - - . - -
  • -
- - )} + /> + + + + ) : ( + + +
+ +
+
+
+ ))} {/* Local-specific help */} {isError && behaveAs === BehaveAs.LOCAL && ( diff --git a/autogpt_platform/frontend/src/components/auth/help-item.tsx b/autogpt_platform/frontend/src/components/auth/help-item.tsx index 12c791fe4459..51f4fef37a0b 100644 --- a/autogpt_platform/frontend/src/components/auth/help-item.tsx +++ b/autogpt_platform/frontend/src/components/auth/help-item.tsx @@ -3,29 +3,33 @@ import Link from "next/link"; interface HelpItemProps { title: string; - description: string; - linkText: string; - href: string; + description?: string; + linkText?: string; + href?: string; } export function HelpItem({ title, description, linkText, - href, + href = "", }: HelpItemProps) { + const external = !href.startsWith("/"); + return (

{title}

{description}{" "} - - {linkText} - - + {linkText && ( + + {linkText} + {external && } + + )}

);