Fixing some small merge issues and ensure docker runs the backend properly

This commit is contained in:
Keith Stevens
2023-01-03 15:01:24 +09:00
parent a926703eec
commit dbfa77e8b7
6 changed files with 5 additions and 33 deletions
+2 -9
View File
@@ -99,22 +99,15 @@ function Signin({ csrfToken, providers }) {
</Stack>
<div className="pt-10 text-center">
By signing up you agree to our <br></br>
<Link href="#" aria-label="Terms of Service" className="hover:underline underline-offset-4">
<Link href="/terms-of-service" aria-label="Terms of Service" className="hover:underline underline-offset-4">
<b>Terms of Service</b>
</Link>{" "}
and{" "}
<Link href="#" aria-label="Terms of Use" className="hover:underline underline-offset-4">
<Link href="/privacy-policy" aria-label="Privacy Policy" className="hover:underline underline-offset-4">
<b>Privacy Policy</b>
</Link>
.
</div>
<hr className="mt-14 mb-4 h-px bg-gray-200 border-0" />
<div className="text-center">
Already have an account?{" "}
<Link href="#" aria-label="Log In" className="hover:underline underline-offset-4">
<b>Log In</b>
</Link>
</div>
</AuthLayout>
</div>
);