mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Preparing the repository
This commit is contained in:
@@ -76,7 +76,7 @@ export const LoginForm = (props: loginFormProps) => {
|
||||
<div className="flex items-center">
|
||||
<FormLabel>Password</FormLabel>
|
||||
<Link
|
||||
href="/forgot-password"
|
||||
href={"/forgot-password"}
|
||||
className="ml-auto inline-block text-sm underline"
|
||||
>
|
||||
Forgot your password?
|
||||
@@ -94,7 +94,7 @@ export const LoginForm = (props: loginFormProps) => {
|
||||
</Button>
|
||||
<div className="mt-4 text-center text-sm">
|
||||
Don't have an account?{" "}
|
||||
<Link href="/register" className="underline">
|
||||
<Link href={"/register"} className="underline">
|
||||
Sign up
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ export type SocialAuthButtonProps = {}
|
||||
export const SocialAuthButton = (props: SocialAuthButtonProps) => {
|
||||
return (
|
||||
<div className="flex flex-col gap-4 mt-5">
|
||||
{env.NEXT_PUBLIC_GOOGLE_AUTH === "true" ?
|
||||
{process.env.NEXT_PUBLIC_GOOGLE_AUTH == 'true' ?
|
||||
<Button
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
|
||||
Reference in New Issue
Block a user