Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.28 KB | None | 0 0
  1. <template>
  2.   <v-container fill-height>
  3.     <v-layout align-center justify-center>
  4.       <v-flex xs12 sm8 md4>
  5.  
  6.         <v-card>
  7.           <v-toolbar dark color="primary">
  8.             <v-toolbar-title>Sign In</v-toolbar-title>
  9.           </v-toolbar>
  10.  
  11.           <v-card-text>
  12.             <v-form v-model="validSignInForm">
  13.               <v-text-field
  14.                type="text"
  15.                v-model="username"
  16.                :rules="usernameRules"
  17.                label="Username"
  18.                prepend-icon="person"
  19.                required
  20.              ></v-text-field>
  21.               <v-text-field
  22.                type="password"
  23.                v-model="password"
  24.                :rules="passwordRules"
  25.                label="Password"
  26.                prepend-icon="lock"
  27.                required
  28.              ></v-text-field>
  29.             </v-form>
  30.           </v-card-text>
  31.  
  32.           <v-card-actions>
  33.             <v-btn :disabled="!validSignInForm" block color="primary" @click="submitSignInForm">Sign In</v-btn>
  34.           </v-card-actions>
  35.  
  36.           <v-card-text>
  37.             Don't have an account? <router-link to="/signUp">Create One.</router-link>
  38.           </v-card-text>
  39.         </v-card>
  40.  
  41.       </v-flex>
  42.     </v-layout>
  43.   </v-container>
  44. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement