Skip to content

Commit

Permalink
[web] - oauth: add LinkedIn provider (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Matusevich authored Nov 16, 2023
1 parent c05c224 commit f0b17d3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions web/src/v6.1.0/pages/Signup/components/OAuthForm.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { faGithub, faGoogle } from '@fortawesome/free-brands-svg-icons'
import { faGithub, faGoogle, faLinkedinIn } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { Provider } from '@supabase/supabase-js'
import { Button } from '../../../../components/Form'
Expand Down Expand Up @@ -57,16 +57,23 @@ const OAuthForm = () => {
/>
Sign in with Google
</Button>
{/* <Button
<Button
type="button"
size="xl"
variant="outline-secondary"
className="w-full"
disabled={oauth.isLoading || !!oauth.session}
isLoading={oauth.isLoading || !!oauth.session}
onClick={() => onOAuthSigninClick('linkedin_oidc')}
>
<FontAwesomeIcon
icon={faLinkedinIn}
fixedWidth
size="lg"
className="mr-2"
/>
Sign in with LinkedIn
</Button> */}
</Button>
</div>
</div>
</div>
Expand Down

0 comments on commit f0b17d3

Please sign in to comment.