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

@@ -6,8 +6,9 @@
</div>
<div v-else>
<p class="info">{{ $t("login_first") }}</p>
<FirebaseLogin />
<FirebaseLogin @show-email="showEmail = true" />
</div>
<FirebaseEmail :show="showEmail" @hide-modal="showEmail = false" />
</AppSection>
</template>
@@ -18,6 +19,7 @@ export default {
data() {
return {
fb,
showEmail: false,
}
},
}