We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a84203c + 3aa8e77 commit 0a9fc27Copy full SHA for 0a9fc27
client/src/components/auth/AuthSignInForm.tsx
@@ -65,14 +65,21 @@ export const AuthSignInForm = () => {
65
</Button>
66
</form>
67
<AuthSocialLoginButtons />
68
- <div className="mt-4">
+ <div className="mt-4 flex justify-between">
69
<Button
70
variant="link"
71
className="text-muted-foreground underline underline-offset-4 h-auto p-0"
72
onClick={() => navigate("/signup", { state: { from: location.pathname } })}
73
>
74
계정이 없으신가요?
75
76
+ <Button
77
+ variant="link"
78
+ className="text-muted-foreground underline underline-offset-4 h-auto p-0"
79
+ onClick={() => navigate("/")}
80
+ >
81
+ 메인 페이지로 돌아가기
82
+ </Button>
83
</div>
84
</AuthCard>
85
</>
0 commit comments