fix login link url
This commit is contained in:
parent
189cfd8050
commit
f6ec418cef
|
@ -90,11 +90,11 @@ const Navigation = ({ mode, uri }) => {
|
||||||
|
|
||||||
{showLoginNavigation && (
|
{showLoginNavigation && (
|
||||||
<>
|
<>
|
||||||
<Link href={`${accountsUrl}/auth/login`} className="button-link-primary">
|
<Link href={`${accountsUrl}auth/login`} className="button-link-primary">
|
||||||
Log in
|
Log in
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link href={`${accountsUrl}/auth/registration`} className="button-primary">
|
<Link href={`${accountsUrl}auth/registration`} className="button-primary">
|
||||||
Sign up
|
Sign up
|
||||||
</Link>
|
</Link>
|
||||||
</>
|
</>
|
||||||
|
@ -144,11 +144,11 @@ const Navigation = ({ mode, uri }) => {
|
||||||
<div className="flex items-center justify-center px-4 space-x-6">
|
<div className="flex items-center justify-center px-4 space-x-6">
|
||||||
{showLoginNavigation && (
|
{showLoginNavigation && (
|
||||||
<>
|
<>
|
||||||
<Link href={`${accountsUrl}/auth/login`} className="button-secondary-light">
|
<Link href={`${accountsUrl}auth/login`} className="button-secondary-light">
|
||||||
Log in
|
Log in
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link href={`${accountsUrl}/auth/registration`} className="button-primary">
|
<Link href={`${accountsUrl}auth/registration`} className="button-primary">
|
||||||
Sign up
|
Sign up
|
||||||
</Link>
|
</Link>
|
||||||
</>
|
</>
|
||||||
|
|
Reference in New Issue