adding latest
This commit is contained in:
42
src/views/forms/LoginForm.vue
Normal file
42
src/views/forms/LoginForm.vue
Normal 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>
|
||||
Reference in New Issue
Block a user