Update snapshots
This commit is contained in:
parent
2b3d86f390
commit
1109a000cb
2 changed files with 16 additions and 8 deletions
|
@ -10,24 +10,28 @@ exports[`<LoginForm /> renders correctly 1`] = `
|
||||||
className="fields-group"
|
className="fields-group"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="input email optional user_email"
|
className="input email user_email"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
aria-label="Username"
|
aria-label="Username"
|
||||||
className="string email optional"
|
autoComplete="off"
|
||||||
|
className="string email"
|
||||||
name="username"
|
name="username"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
|
required={true}
|
||||||
type="text"
|
type="text"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className="input password optional user_password"
|
className="input password user_password"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
aria-label="Password"
|
aria-label="Password"
|
||||||
className="password optional"
|
autoComplete="off"
|
||||||
|
className="password"
|
||||||
name="password"
|
name="password"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
|
required={true}
|
||||||
type="password"
|
type="password"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,24 +13,28 @@ exports[`<LoginPage /> renders correctly on load 1`] = `
|
||||||
className="fields-group"
|
className="fields-group"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="input email optional user_email"
|
className="input email user_email"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
aria-label="Username"
|
aria-label="Username"
|
||||||
className="string email optional"
|
autoComplete="off"
|
||||||
|
className="string email"
|
||||||
name="username"
|
name="username"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
|
required={true}
|
||||||
type="text"
|
type="text"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className="input password optional user_password"
|
className="input password user_password"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
aria-label="Password"
|
aria-label="Password"
|
||||||
className="password optional"
|
autoComplete="off"
|
||||||
|
className="password"
|
||||||
name="password"
|
name="password"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
|
required={true}
|
||||||
type="password"
|
type="password"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue