You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
1.8 KiB

import React, { useState } from 'react';
import {View} from 'react-native'
import ETextInput from '@components/ETextInput';
import EFullButton, { ESmallButton } from '@components/EButton';
import EText, { ELabelText, ETitleText } from '@components/EText';
import ENavButtons from '@components/ENavButtons';
// implement logic here later.
export default function PasswordResetEmailInput(props:any) {
const [email, setEmail] = useState<string>('');
const emailre = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/;
return (
<>
<View
style={{
flex: 1,
flexDirection: 'column',
}}>
<ENavButtons back={true} />
<View style={{flexDirection: 'column', marginTop: 0}}>
<View style={{marginBottom: 24}}>
<ETitleText style={{marginBottom:8}}> </ETitleText>
<EText> </EText>
</View>
<View style={{rowGap: 8}}>
<ELabelText></ELabelText>
<ETextInput placeholder='이메일 입력하기' value={email} setValue={setEmail} />
<ESmallButton text={'재설정 이메일 보내기'} active={emailre.test(email)} />
</View>
</View>
<EFullButton style={{marginTop:380}} text='다음' active={emailre.test(email)}/>
</View>
</>
);
}