SymphonyElectron/spec/__snapshots__/basicAuth.spec.ts.snap

95 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-03-13 02:00:52 -05:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`basic auth should render correctly 1`] = `
<div
className="container"
lang="en-US"
>
<span>
Please provide your login credentials for:
</span>
<span
className="hostname"
>
unknown
</span>
<span
className="credentials-error"
id="credentialsError"
>
Invalid user name/password
</span>
<form
action="Login"
id="basicAuth"
name="Basic Auth"
onSubmit={[Function]}
>
<table
className="form"
>
<tbody>
<tr>
<td
id="username-text"
2019-03-13 02:00:52 -05:00
>
User name:
</td>
<td>
<input
id="username"
name="username"
onChange={[Function]}
required={true}
title="Username"
/>
</td>
</tr>
<tr>
<td
id="password-text"
2019-03-13 02:00:52 -05:00
>
Password:
</td>
<td>
<input
id="password"
name="password"
onChange={[Function]}
required={true}
title="Password"
type="password"
/>
</td>
</tr>
</tbody>
</table>
<div
className="footer"
>
<div
className="button-container"
>
<button
id="login"
type="submit"
>
Log In
</button>
</div>
<div
className="button-container"
>
<button
id="cancel"
onClick={[Function]}
type="button"
>
Cancel
</button>
</div>
</div>
</form>
</div>
2019-03-13 02:00:52 -05:00
`;