| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Login.vue renders correctly 1`] = `
- <div
- class="c-app flex-row align-items-center"
- >
- <ccontainer-stub
- tag="div"
- >
- <crow-stub
- class="justify-content-center"
- gutters="true"
- tag="div"
- >
- <ccol-stub
- md="8"
- tag="div"
- >
- <ccardgroup-stub
- tag="div"
- >
- <ccard-stub
- class="p-4"
- >
- <ccardbody-stub>
- <cform-stub>
- <h1>
- Login
- </h1>
-
- <p
- class="text-muted"
- >
- Sign In to your account
- </p>
-
- <cinput-stub
- autocomplete="username email"
- lazy="400"
- placeholder="Username"
- type="text"
- />
-
- <cinput-stub
- autocomplete="curent-password"
- lazy="400"
- placeholder="Password"
- type="password"
- />
-
- <crow-stub
- gutters="true"
- tag="div"
- >
- <ccol-stub
- class="text-left"
- col="6"
- tag="div"
- >
- <cbutton-stub
- activeclass="router-link-active"
- class="px-4"
- color="primary"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
- Login
- </cbutton-stub>
- </ccol-stub>
-
- <ccol-stub
- class="text-right"
- col="6"
- tag="div"
- >
- <cbutton-stub
- activeclass="router-link-active"
- class="px-0"
- color="link"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
- Forgot password?
- </cbutton-stub>
-
- <cbutton-stub
- activeclass="router-link-active"
- class="d-lg-none"
- color="link"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
- Register now!
- </cbutton-stub>
- </ccol-stub>
- </crow-stub>
- </cform-stub>
- </ccardbody-stub>
- </ccard-stub>
-
- <ccard-stub
- bodywrapper="true"
- class="text-center py-5 d-md-down-none"
- color="primary"
- textcolor="white"
- >
- <ccardbody-stub>
- <h2>
- Sign up
- </h2>
-
- <p>
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
- </p>
-
- <cbutton-stub
- activeclass="router-link-active"
- color="light"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- size="lg"
- target="_self"
- type="button"
- variant="outline"
- >
-
- Register Now!
-
- </cbutton-stub>
- </ccardbody-stub>
- </ccard-stub>
- </ccardgroup-stub>
- </ccol-stub>
- </crow-stub>
- </ccontainer-stub>
- </div>
- `;
|