adding latest

This commit is contained in:
2020-03-24 23:47:10 +00:00
parent 44aaddd3bc
commit bd1bbc284d
14 changed files with 285 additions and 29 deletions

View File

@@ -0,0 +1,42 @@
<template>
<v-container fill-height fluid>
<!-- <v-form v-model="valid"> -->
<v-row >
<v-col cols="5" align-self="start" class="d-flex justify-end pr-0">
<v-card color="rgb(0, 0, 0, 0)" flat>
<h1 class="whiteText display-2 font-weight-bold">Savvy Firebase Tutorial</h1>
<span class="whiteText">Log in or create an account.</span>
</v-card>
</v-col>
<v-spacer></v-spacer>
<v-col cols="6" align-self="center" class="d-flex justify-start">
<v-card color="rgb(0, 0, 0, 0)" flat>
<h1 class="whiteText">Hello</h1>
<h1 class="whiteText">Hello</h1>
<h1 class="whiteText">Hello</h1>
<h1 class="whiteText">Hello</h1>
<h1 class="whiteText">Hello</h1>
<h1 class="whiteText">Hello</h1>
</v-card>
</v-col>
</v-row>
<!-- </v-form> -->
</v-container>
</template>
<script>
export default {
name: "LoginForm",
data() {
return {
valid: false
};
}
};
</script>
<style lang="scss" scoped>
.whiteText {
color: white;
}
</style>