Guest User

Untitled

a guest
Feb 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <template>
  2. <v-container>
  3. <v-layout row wrap>
  4. <v-flex xs12 sm8 offset-sm2 align-center justify-center>
  5. <v-card class="elevation-12">
  6. <v-toolbar dark color="primary">
  7. <v-toolbar-title>Sign In</v-toolbar-title>
  8. </v-toolbar>
  9. <v-card-text>
  10. <v-container>
  11. <form>
  12. <v-layout row>
  13. <v-flex xs12>
  14. <v-text-field
  15. name="emailid"
  16. </v-text-field>
  17. </v-flex>
  18. </v-layout>
  19. <v-layout row>
  20. <v-flex xs12>
  21. <v-text-field
  22. name="password"
  23. </v-text-field>
  24. </v-flex>
  25. </v-layout>
  26. <v-layout row xs12>
  27. <v-flex>
  28. <v-btn flat block color="primary"
  29. @click.prevent="validateBeforeSubmit">
  30. Sign In
  31. </v-btn>
  32. </v-flex>
  33. <v-flex>
  34. <v-btn flat block
  35. @click.prevent="clear">
  36. Clear
  37. </v-btn>
  38. </v-flex>
  39. </v-layout>
  40. </form>
  41. </v-container>
  42. </v-card-text>
  43. </v-card>
  44. </v-flex>
  45. </v-layout>
  46. </v-container>
  47. </template>
Add Comment
Please, Sign In to add comment