[WIP] Add Claim Request

This commit is contained in:
R
2023-02-14 12:39:51 +07:00
parent a7e688a52c
commit 13542cd3c0
102 changed files with 2625 additions and 391 deletions

View File

@@ -3,14 +3,14 @@ import { Link as RouterLink } from 'react-router-dom';
import { styled } from '@mui/material/styles';
import { Box, Button, Link, Container, Typography } from '@mui/material';
// layouts
import LogoOnlyLayout from '../../layouts/LogoOnlyLayout';
import LogoOnlyLayout from '@/layouts/LogoOnlyLayout';
// routes
import { PATH_AUTH } from '../../routes/paths';
import { PATH_AUTH } from '@/routes/paths';
// components
import Page from '../../components/Page';
import Iconify from '../../components/Iconify';
import Page from '@/components/Page';
import Iconify from '@/components/Iconify';
// sections
import { ForgetPasswordForm } from '../../sections/auth/forget-password';
import { ForgetPasswordForm } from '@/sections/auth/forget-password';
import { useSearchParams } from 'react-router-dom';
// ----------------------------------------------------------------------

View File

@@ -13,16 +13,16 @@ import {
Typography,
} from "@mui/material";
// routes
import { PATH_AUTH } from "../../routes/paths";
import { PATH_AUTH } from "@/routes/paths";
// hooks
import useAuth from "../../hooks/useAuth";
import useResponsive from "../../hooks/useResponsive";
import useAuth from "@/hooks/useAuth";
import useResponsive from "@/hooks/useResponsive";
// components
import Page from "../../components/Page";
import Logo from "../../components/Logo";
import Image from "../../components/Image";
import Page from "@/components/Page";
import Logo from "@/components/Logo";
import Image from "@/components/Image";
// sections
import { LoginForm } from "../../sections/auth/login";
import { LoginForm } from "@/sections/auth/login";
// ----------------------------------------------------------------------

View File

@@ -4,16 +4,16 @@ import { Link as RouterLink } from 'react-router-dom';
import { styled } from '@mui/material/styles';
import { Box, Card, Link, Container, Typography, Tooltip } from '@mui/material';
// hooks
import useAuth from '../../hooks/useAuth';
import useResponsive from '../../hooks/useResponsive';
import useAuth from '@/hooks/useAuth';
import useResponsive from '@/hooks/useResponsive';
// routes
import { PATH_AUTH } from '../../routes/paths';
import { PATH_AUTH } from '@/routes/paths';
// components
import Page from '../../components/Page';
import Logo from '../../components/Logo';
import Image from '../../components/Image';
import Page from '@/components/Page';
import Logo from '@/components/Logo';
import Image from '@/components/Image';
// sections
import { RegisterForm } from '../../sections/auth/register';
import { RegisterForm } from '@/sections/auth/register';
// ----------------------------------------------------------------------

View File

@@ -4,15 +4,15 @@ import { Link as RouterLink } from 'react-router-dom';
import { styled } from '@mui/material/styles';
import { Box, Button, Container, Typography } from '@mui/material';
// layouts
import LogoOnlyLayout from '../../layouts/LogoOnlyLayout';
import LogoOnlyLayout from '@/layouts/LogoOnlyLayout';
// routes
import { PATH_AUTH } from '../../routes/paths';
import { PATH_AUTH } from '@/routes/paths';
// components
import Page from '../../components/Page';
import Page from '@/components/Page';
// sections
import { ResetPasswordForm } from '../../sections/auth/reset-password';
import { ResetPasswordForm } from '@/sections/auth/reset-password';
// assets
import { SentIcon } from '../../assets';
import { SentIcon } from '@/assets';
// ----------------------------------------------------------------------

View File

@@ -3,14 +3,14 @@ import { Link as RouterLink } from 'react-router-dom';
import { styled } from '@mui/material/styles';
import { Box, Button, Link, Container, Typography } from '@mui/material';
// layouts
import LogoOnlyLayout from '../../layouts/LogoOnlyLayout';
import LogoOnlyLayout from '@/layouts/LogoOnlyLayout';
// routes
import { PATH_AUTH } from '../../routes/paths';
import { PATH_AUTH } from '@/routes/paths';
// components
import Page from '../../components/Page';
import Iconify from '../../components/Iconify';
import Page from '@/components/Page';
import Iconify from '@/components/Iconify';
// sections
import { VerifyCodeForm } from '../../sections/auth/verify-code';
import { VerifyCodeForm } from '@/sections/auth/verify-code';
// ----------------------------------------------------------------------