Not registered yet?
{
e.preventDefault();
@@ -15,14 +16,9 @@ const GoogleLoginButton = () => {
diff --git a/src/components/OAuth/LinkedIn.tsx b/src/components/OAuth/LinkedIn.tsx
new file mode 100644
index 00000000..805d1da5
--- /dev/null
+++ b/src/components/OAuth/LinkedIn.tsx
@@ -0,0 +1,26 @@
+import React from 'react';
+import { API_URL } from '../../constants';
+import LinkedinColorIcon from '../../assets/svg/Icons/LinkedInColorIcon';
+
+const handleLoginLinkedIn = (e: React.FormEvent): void => {
+ e.preventDefault();
+ window.location.href = `${API_URL}/auth/linkedin`;
+};
+
+const LinkedInLoginButton = () => {
+ return (
+ <>
+
+
+
+ >
+ );
+};
+
+export default LinkedInLoginButton;
diff --git a/src/components/RegisterModal/index.tsx b/src/components/RegisterModal/index.tsx
index 630cce9f..c19dc6c0 100644
--- a/src/components/RegisterModal/index.tsx
+++ b/src/components/RegisterModal/index.tsx
@@ -4,6 +4,7 @@ import { API_URL } from '../../constants';
import closeIcon from '../../assets/svg/closeIcon.svg';
import GoogleLoginButton from '../OAuth/Google';
import useProfile from '../../hooks/useProfile';
+import LinkedInLoginButton from '../OAuth/LinkedIn';
interface RegisterModalProps {
handleClose: () => void;
@@ -185,6 +186,7 @@ const RegisterModal: React.FC
= ({
Register
+