add linking of a device to the Registration logic
parent
305ece1c7c
commit
9586c3a06a
@ -1,39 +1,45 @@
|
|||||||
import React from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import { AccentText } from './AccentText';
|
import { AccentText } from './AccentText';
|
||||||
|
|
||||||
import { RegistrationTabs } from './registration/RegistrationTabs';
|
import { RegistrationTabs } from './registration/RegistrationTabs';
|
||||||
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
|
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
|
||||||
import { SessionToastContainer } from './SessionToastContainer';
|
import { SessionToastContainer } from './SessionToastContainer';
|
||||||
import { lightTheme, SessionTheme } from '../../state/ducks/SessionTheme';
|
import { lightTheme, SessionTheme } from '../../state/ducks/SessionTheme';
|
||||||
|
import { setSignInByLinking } from '../../session/utils/User';
|
||||||
|
|
||||||
export const SessionRegistrationView = () => (
|
export const SessionRegistrationView = () => {
|
||||||
<SessionTheme theme={lightTheme}>
|
useEffect(() => {
|
||||||
<div className="session-content">
|
setSignInByLinking(false);
|
||||||
<SessionToastContainer theme={lightTheme} />
|
}, []);
|
||||||
<div id="error" className="collapse" />
|
return (
|
||||||
<div className="session-content-header">
|
<SessionTheme theme={lightTheme}>
|
||||||
<div className="session-content-close-button">
|
<div className="session-content">
|
||||||
<SessionIconButton
|
<SessionToastContainer theme={lightTheme} />
|
||||||
iconSize={SessionIconSize.Medium}
|
<div id="error" className="collapse" />
|
||||||
iconType={SessionIconType.Exit}
|
<div className="session-content-header">
|
||||||
onClick={() => {
|
<div className="session-content-close-button">
|
||||||
window.close();
|
<SessionIconButton
|
||||||
}}
|
iconSize={SessionIconSize.Medium}
|
||||||
theme={lightTheme}
|
iconType={SessionIconType.Exit}
|
||||||
/>
|
onClick={() => {
|
||||||
|
window.close();
|
||||||
|
}}
|
||||||
|
theme={lightTheme}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="session-content-session-button">
|
||||||
|
<img alt="brand" src="./images/session/brand.svg" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="session-content-session-button">
|
<div className="session-content-body">
|
||||||
<img alt="brand" src="./images/session/brand.svg" />
|
<div className="session-content-accent">
|
||||||
|
<AccentText />
|
||||||
|
</div>
|
||||||
|
<div className="session-content-registration">
|
||||||
|
<RegistrationTabs theme={lightTheme} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="session-content-body">
|
</SessionTheme>
|
||||||
<div className="session-content-accent">
|
);
|
||||||
<AccentText />
|
};
|
||||||
</div>
|
|
||||||
<div className="session-content-registration">
|
|
||||||
<RegistrationTabs theme={lightTheme} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</SessionTheme>
|
|
||||||
);
|
|
||||||
|
Loading…
Reference in New Issue