eny.space Landingpage
1
fork

Configure Feed

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

feat(auth): add note about email-only login on login and signup pages

+10 -2
+5 -1
app/login/page.tsx
··· 80 80 </Button> 81 81 </form> 82 82 </CardContent> 83 - <CardFooter className="flex justify-center text-sm text-muted-foreground"> 83 + <CardFooter className="flex flex-col gap-3 text-sm text-muted-foreground"> 84 84 <span> 85 85 Don&apos;t have an account?{" "} 86 86 <Link href={signupHref} className="underline underline-offset-4"> 87 87 Sign up 88 88 </Link> 89 89 </span> 90 + <p className="text-center text-xs text-muted-foreground/70"> 91 + Login with your eny.space email — not your Atmosphere handle. 92 + Atmosphere login is coming soon. 93 + </p> 90 94 </CardFooter> 91 95 </Card> 92 96 </main>
+5 -1
app/signup/signup-form.tsx
··· 99 99 </Button> 100 100 </form> 101 101 </CardContent> 102 - <CardFooter className="flex justify-center text-sm text-muted-foreground"> 102 + <CardFooter className="flex flex-col gap-3 text-sm text-muted-foreground"> 103 103 <span> 104 104 Already have an account?{" "} 105 105 <Link href={loginHref} className="underline underline-offset-4"> 106 106 Login 107 107 </Link> 108 108 </span> 109 + <p className="text-center text-xs text-muted-foreground/70"> 110 + We use email login to keep your account secure during PDS setup. 111 + Atmosphere login is coming soon. 112 + </p> 109 113 </CardFooter> 110 114 </Card> 111 115 </main>