SymphonyElectron/spec/__snapshots__/welcome.spec.ts.snap
Kiran Niranjan df14fa19d1
SDA-3901 (Add new implementation for welcome screen) (#1519)
* SDA-3901 - Add new welcome screen

* SDA-3901 - Change to global config

* SDA-3901 - Add locale

* SDA-3901 - Reposition protocol handling

* SDA-3901 - Fix protocol handler

* SDA-3901 - Fix protocol handler

* SDA-3901 - Fix welcome screen load

* SDA-3901 - Fix seamless login url

* SDA-3901 - Validate if pod is configured for SSO
2022-10-26 08:14:16 +05:30

97 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`welcome should render correctly 1`] = `
<div
className="Welcome"
lang="en-US"
style={
Object {
"height": "494px",
}
}
>
<div
className="Welcome-content"
>
<div
className="Welcome-image-container"
>
<img
alt="Symphony Logo"
src="../renderer/assets/welcome-symphony-logo.svg"
/>
</div>
<div
className="Welcome-about-symphony-text"
style={
Object {
"marginTop": "8px",
}
}
>
<span>
Welcome to the largest global community in financial services with over
</span>
<span
className="Welcome-text-bold"
>
half a million users
</span>
<span>
and more than
</span>
<span
className="Welcome-text-bold"
>
1,000 institutions.
</span>
</div>
<div>
<div
className="Welcome-login-text"
>
<span>
Log in with your pod URL
</span>
</div>
<div
className="Welcome-input-container"
>
<span>
Pod URL
</span>
<div>
<input
className="Welcome-main-container-podurl-box"
data-testid="Welcome-main-container-podurl-box"
onChange={[Function]}
type="url"
value="https://[POD].symphony.com"
/>
<label
className="Welcome-input-message"
>
Find your pod URL in your invitation email.
</label>
</div>
</div>
</div>
<button
className="Welcome-continue-button"
disabled={true}
onClick={[Function]}
style={Object {}}
>
log in
</button>
<div
className="Welcome-redirect-info-text-container"
>
<span>
Youll momentarily be redirected to your web browser.
</span>
</div>
</div>
</div>
`;