You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/session/SessionRegistrationView.tsx

46 lines
1.5 KiB
TypeScript

import React, { useEffect } from 'react';
import { AccentText } from './AccentText';
import { RegistrationStages } from './registration/RegistrationStages';
import { SessionIconButton, SessionIconType } from './icon';
import { SessionToastContainer } from './SessionToastContainer';
import { lightTheme, SessionTheme } from '../../state/ducks/SessionTheme';
import { setSignInByLinking } from '../../session/utils/User';
export const SessionRegistrationView = () => {
useEffect(() => {
setSignInByLinking(false);
}, []);
return (
<SessionTheme theme={lightTheme}>
<div className="session-content">
<SessionToastContainer theme={lightTheme} />
<div id="error" className="collapse" />
<div className="session-content-header">
<div className="session-content-close-button">
<SessionIconButton
iconSize={'medium'}
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 className="session-content-body">
<div className="session-content-accent">
<AccentText />
</div>
<div className="session-content-registration">
<RegistrationStages />
</div>
</div>
</div>
</SessionTheme>
);
};