| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Register.vue renders correctly 1`] = `
- <div
- class="d-flex align-items-center min-vh-100"
- >
- <ccontainer-stub
- fluid="true"
- tag="div"
- >
- <crow-stub
- class="justify-content-center"
- gutters="true"
- tag="div"
- >
- <ccol-stub
- md="6"
- tag="div"
- >
- <ccard-stub
- class="mx-4 mb-0"
- >
- <ccardbody-stub
- class="p-4"
- >
- <cform-stub>
- <h1>
- Register
- </h1>
-
- <p
- class="text-muted"
- >
- Create your account
- </p>
-
- <cinput-stub
- autocomplete="username"
- lazy="400"
- placeholder="Username"
- type="text"
- />
-
- <cinput-stub
- autocomplete="email"
- lazy="400"
- placeholder="Email"
- prepend="@"
- type="text"
- />
-
- <cinput-stub
- autocomplete="new-password"
- lazy="400"
- placeholder="Password"
- type="password"
- />
-
- <cinput-stub
- autocomplete="new-password"
- class="mb-4"
- lazy="400"
- placeholder="Repeat password"
- type="password"
- />
-
- <cbutton-stub
- activeclass="router-link-active"
- block="true"
- color="success"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
- Create Account
- </cbutton-stub>
- </cform-stub>
- </ccardbody-stub>
-
- <ccardfooter-stub
- class="p-4"
- >
- <crow-stub
- gutters="true"
- tag="div"
- >
- <ccol-stub
- col="6"
- tag="div"
- >
- <cbutton-stub
- activeclass="router-link-active"
- block="true"
- color="facebook"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
-
- Facebook
-
- </cbutton-stub>
- </ccol-stub>
-
- <ccol-stub
- col="6"
- tag="div"
- >
- <cbutton-stub
- activeclass="router-link-active"
- block="true"
- color="twitter"
- event="click"
- exactactiveclass="router-link-exact-active"
- routertag="a"
- target="_self"
- type="button"
- >
-
- Twitter
-
- </cbutton-stub>
- </ccol-stub>
- </crow-stub>
- </ccardfooter-stub>
- </ccard-stub>
- </ccol-stub>
- </crow-stub>
- </ccontainer-stub>
- </div>
- `;
|