feat: sign in with email

This commit is contained in:
liyasthomas
2021-06-11 05:31:29 +05:30
parent da94a94d71
commit be67986123
11 changed files with 199 additions and 8 deletions

View File

@@ -73,7 +73,7 @@
<i class="material-icons">login</i>
</button>
<template slot="popover">
<FirebaseLogin />
<FirebaseLogin @show-email="showEmail = true" />
</template>
</v-popover>
<v-popover v-else>
@@ -160,6 +160,7 @@
/>
<AppShortcuts :show="showShortcuts" @hide-modal="showShortcuts = false" />
<AppSupport :show="showSupport" @hide-modal="showSupport = false" />
<FirebaseEmail :show="showEmail" @hide-modal="showEmail = false" />
</header>
</template>
@@ -178,6 +179,7 @@ export default {
showExtensions: false,
showShortcuts: false,
showSupport: false,
showEmail: false,
navigatorShare: navigator.share,
fb,
}