Advertisement
Guest User

Untitled

a guest
Apr 27th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. <template>
  2. <q-page
  3. class="window-height window-width row justify-center items-center"
  4. style="background: linear-gradient(135deg, #EA5C54 0%,#bb6dec 100%);"
  5. >
  6. <div class="column">
  7. <div class="row">
  8. <q-card square dark class="q-pa-md q-ma-none no-shadow bg-grey-10" style="width:320px;">
  9. <q-card-section class="q-mt-xl q-mb-md">
  10. <p class="text-weight-bolder text-grey">Login to your account</p>
  11. </q-card-section>
  12. <q-card-section>
  13. <q-form class="q-gutter-md">
  14. <q-input dark dense square filled clearable v-model="email" type="email" label="Email">
  15. <template v-slot:prepend>
  16. <q-icon name="email" />
  17. </template>
  18. </q-input>
  19. <q-input dark dense square filled clearable v-model="password" type="password" label="Password">
  20. <template v-slot:prepend>
  21. <q-icon name="lock" />
  22. </template>
  23. </q-input>
  24. </q-form>
  25. </q-card-section>
  26. <q-card-actions>
  27. <div class="row full-width items-center">
  28. <div class="col-6">
  29. <q-btn outline rounded size="md" color="red-4" class="full-width text-white" label="Sign In" />
  30. </div>
  31. <div class="col-6">
  32. <p class="text-no-wrap text-grey text-caption text-right">Forgot password?</p>
  33. </div>
  34. </div>
  35. </q-card-actions>
  36. <q-card-section>
  37. <p class="text-caption text-weight-light text-grey">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper laoreet placerat. Nullam semper auctor justo, rutrum posuere odio vulputate nec.</p>
  38. </q-card-section>
  39. </q-card>
  40. </div>
  41. </div>
  42. </q-page>
  43. </template>
  44.  
  45. <script>
  46. export default {
  47. name: 'Login',
  48. data () {
  49. return {
  50. email: '',
  51. username: '',
  52. password: ''
  53. }
  54. }
  55. }
  56. </script>
  57.  
  58. <style>
  59. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement