feat: (auth) Add Google and DIscord Auth
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 2m0s

This commit is contained in:
2024-06-13 23:38:03 -04:00
parent 9bd10b56d9
commit 8ae855838b
4 changed files with 53 additions and 5 deletions

View File

@@ -51,7 +51,14 @@
</q-card-actions>
</q-card-section>
</q-form>
<!-- <q-card-section><GoogleOauthComponent /></q-card-section> -->
<q-card-section>
<div class="row justify-center q-ma-sm">
<GoogleOauthComponent />
</div>
<div class="row justify-center q-ma-sm">
<DiscordOauthComponent />
</div>
</q-card-section>
</q-card>
</q-page>
</q-page-container>
@@ -76,7 +83,8 @@
<script setup lang="ts">
import { ref } from 'vue';
import { login } from 'boot/appwrite';
// import GoogleOauthComponent from 'src/components/GoogleOauthComponent.vue';
import GoogleOauthComponent from 'src/components/GoogleOauthComponent.vue';
import DiscordOauthComponent from 'src/components/DiscordOauthComponent.vue';
const email = ref('');
const password = ref('');