
add authentication routes, components, and pages including AuthHome, Login, and SignUp, and implement form fields utility functions ```
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import {
|
|
IonButton,
|
|
IonCardTitle,
|
|
IonCol,
|
|
IonContent,
|
|
IonFooter,
|
|
IonGrid,
|
|
IonHeader,
|
|
IonImg,
|
|
IonPage,
|
|
IonRouterLink,
|
|
IonRow,
|
|
IonToolbar,
|
|
} from '@ionic/react';
|
|
// import { Action } from '../components/Action';
|
|
import styles from './style.module.scss';
|
|
import { Action } from '../../../components/Action';
|
|
|
|
const AuthHome = () => {
|
|
return (
|
|
<IonPage className={'styles.homePage'}>
|
|
<IonHeader>
|
|
{/* <IonToolbar className="ion-no-margin ion-no-padding"> */}
|
|
<IonImg src="/assets/login2.jpeg" />
|
|
{/* </IonToolbar> */}
|
|
</IonHeader>
|
|
<IonContent fullscreen>
|
|
<div className={styles.getStarted}>
|
|
<IonGrid>
|
|
<IonRow className={`ion-text-center ion-justify-content-center ${styles.heading}`}>
|
|
<IonCol size="11" className={styles.headingText}>
|
|
<IonCardTitle>Join millions of other people discovering their creative side</IonCardTitle>
|
|
</IonCol>
|
|
</IonRow>
|
|
|
|
<IonRow className={`ion-text-center ion-justify-content-center`}>
|
|
<IonRouterLink routerLink="/signup" className="custom-link">
|
|
<IonCol size="11">
|
|
<IonButton className={`${styles.getStartedButton} custom-button`}>Get started →</IonButton>
|
|
</IonCol>
|
|
</IonRouterLink>
|
|
</IonRow>
|
|
</IonGrid>
|
|
</div>
|
|
</IonContent>
|
|
|
|
<IonFooter>
|
|
<IonGrid>
|
|
<Action message="Already got an account?" text="Login" link="/login" />
|
|
</IonGrid>
|
|
</IonFooter>
|
|
</IonPage>
|
|
);
|
|
};
|
|
|
|
export default AuthHome;
|