|
|
@@ -1,8 +1,9 @@ |
|
|
|
import { IonContent, IonPage, IonButton } from '@ionic/react'; |
|
|
|
import { IonContent, IonPage, IonButton, IonToggle } from '@ionic/react'; |
|
|
|
import { personOutline, lockOpenOutline, mailOutline, phonePortraitOutline } from 'ionicons/icons'; |
|
|
|
import { Component } from 'react'; |
|
|
|
import InputWidget from '../../components/input/InputWidget'; |
|
|
|
import styles from './Signup.module.scss'; |
|
|
|
import { Link } from "react-router-dom"; |
|
|
|
|
|
|
|
type Props = { }; |
|
|
|
|
|
|
@@ -47,15 +48,20 @@ class SignupPage extends Component<Props, OwnState> { |
|
|
|
</div> |
|
|
|
|
|
|
|
<div className={styles.input}> |
|
|
|
<InputWidget type={'PASSWORD'} icon={lockOpenOutline} placeholder={'Confirm Password'} /> |
|
|
|
<InputWidget type={'PASSWORD'} hideEye={true} icon={lockOpenOutline} placeholder={'Confirm Password'} /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div className={styles.confirmationAction}> |
|
|
|
<label> Login with fingerprint scanner </label> |
|
|
|
<IonToggle className={styles.toggle} /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div className={styles.actionButtonsHolder}> |
|
|
|
<IonButton className={styles.actionButton} expand="block"> Login </IonButton> |
|
|
|
</div> |
|
|
|
<IonButton className={styles.actionButton} expand="block"> Create </IonButton> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
|
|
|
|
<div className={ styles.navigationLink }> Already have an account? <a> Login </a> </div> |
|
|
|
<div className={ styles.navigationLink }> Already have an account? <Link to='/login'> <span> Login </span> </Link> </div> |
|
|
|
</IonContent> |
|
|
|
</IonPage> |
|
|
|
}; |
|
|
|