19 lines
595 B
TypeScript
19 lines
595 B
TypeScript
|
import './Confirmed.scss'
|
||
|
import { onMount } from 'solid-js'
|
||
|
import { t } from '../../utils/intl'
|
||
|
|
||
|
export const Confirmed = (props: { token?: string }) => {
|
||
|
onMount(() => {
|
||
|
const token = props.token ?? document.cookie.split(';').at(0).replace('token=', '')
|
||
|
window.addEventListener('mousemove', () => window.close())
|
||
|
window.addEventListener('keydown', () => window.close())
|
||
|
window.addEventListener('click', () => window.close())
|
||
|
localStorage.setItem('token', token)
|
||
|
})
|
||
|
return (
|
||
|
<>
|
||
|
<div class="center">{t('You was successfully authorized')}</div>
|
||
|
</>
|
||
|
)
|
||
|
}
|