Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions packages/registry/src/blocks/sign-in-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,18 @@ export function SignInForm() {
<Text>Continue</Text>
</Button>
</View>
<Text className="text-center text-sm">
Don&apos;t have an account?{' '}
<View className="flex-row items-center">
<Text className="text-center text-sm">
Don&apos;t have an account?{" "}
</Text>
<Pressable
onPress={() => {
// TODO: Navigate to sign up screen
}}>
<Text className="text-sm underline underline-offset-4">Sign up</Text>
}}
>
<Text className="text-sm underline">Sign up</Text>
</Pressable>
</Text>
</View>
<View className="flex-row items-center">
<Separator className="flex-1" />
<Text className="text-muted-foreground px-4 text-sm">or</Text>
Expand Down
9 changes: 6 additions & 3 deletions packages/registry/src/blocks/sign-up-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,18 @@ export function SignUpForm() {
<Text>Continue</Text>
</Button>
</View>
<Text className="text-center text-sm">
Already have an account?{' '}
<View className="flex-row items-center">
<Text className="text-center text-sm">
Already have an account?{" "}
</Text>
<Pressable
onPress={() => {
// TODO: Navigate to sign in screen
}}>
<Text className="text-sm underline underline-offset-4">Sign in</Text>
</Pressable>
</Text>
</View>

<View className="flex-row items-center">
<Separator className="flex-1" />
<Text className="text-muted-foreground px-4 text-sm">or</Text>
Expand Down