diff --git a/.env.example b/.env.example index 2cdba70..3841e37 100644 --- a/.env.example +++ b/.env.example @@ -11,4 +11,7 @@ NUXT_OAUTH_TWITCH_CLIENT_ID= NUXT_OAUTH_TWITCH_CLIENT_SECRET= NUXT_OAUTH_TWITCH_REDIRECT_URL=http://localhost +NUXT_OAUTH_GOOGLE_CLIENT_ID= +NUXT_OAUTH_GOOGLE_CLIENT_SECRET= + NUXT_SESSION_PASSWORD= diff --git a/app/components/Auth/Form.vue b/app/components/Auth/Form.vue index c4debde..0e45e35 100644 --- a/app/components/Auth/Form.vue +++ b/app/components/Auth/Form.vue @@ -13,6 +13,7 @@ defineProps<{ :providers="[ { label: 'GitHub', icon: 'i-simple-icons-github', color: 'gray', external: true, to: '/auth/github' }, { label: 'Twitch', icon: 'i-simple-icons-twitch', color: 'gray', external: true, to: '/auth/twitch' }, + { label: 'Google', icon: 'i-simple-icons-google', color: 'gray', external: true, to: '/auth/google' }, ]" >