Skip to content

Instantly share code, notes, and snippets.

@windate3411
Created February 13, 2020 15:00
Show Gist options
  • Save windate3411/f03cea27087a1b8a151bd2fd18ad677c to your computer and use it in GitHub Desktop.
Save windate3411/f03cea27087a1b8a151bd2fd18ad677c to your computer and use it in GitHub Desktop.
<v-container class="fill-height" fluid>
<v-row align="center" justify="center">
<v-col cols="12" sm="8" md="4">
<v-card class="elevation-12">
<v-toolbar color="primary" dark flat>
<v-toolbar-title class="center">Member Login</v-toolbar-title>
</v-toolbar>
<v-card-text>
<v-form>
<v-text-field
label="email"
name="email"
prepend-icon="mdi-email"
type="text"
v-model="email"
/>
<v-text-field
id="password"
label="Password"
name="password"
prepend-icon="mdi-lock"
type="password"
v-model="password"
maxlength="12"
/>
</v-form>
</v-card-text>
<v-card-actions>
<v-spacer />
<v-btn color="primary" @click="login">Login</v-btn>
</v-card-actions>
</v-card>
</v-col>
</v-row>
</v-container>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment