No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

77 líneas
2.9 KiB

  1. // material-ui
  2. import {Link, Button, Card , Box, Grid } from '@mui/material';
  3. import Typography from '@mui/material/Typography';
  4. import iAmSmartICon from 'assets/images/icons/icon_iAmSmart.png';
  5. import banner from 'assets/images/banner.jpg';
  6. import { Stack } from '../../../node_modules/@mui/material/index';
  7. // ================================|| LOGIN ||================================ //
  8. const RegisterCustom = () => (
  9. <Stack justifyContent="center" sx={{ minHeight: '100vh' }}>
  10. <img src={banner} alt="banner" width="100%" />
  11. <center>
  12. <Card
  13. sx={{
  14. maxWidth: { xs: 1, lg: 1000 },
  15. margin: { xs: 2.5, md: 3 },
  16. '& > *': {
  17. flexGrow: 1,
  18. flexBasis: '50%'
  19. }
  20. }}
  21. >
  22. <Box alignItems="center">
  23. <Typography mt={4} variant="h1">立即成為<strong style={{color: '#FF5733'}}>憲報刊登公告</strong>用戶</Typography>
  24. <Typography variant="body1">只需4-5分鐘</Typography>
  25. <Grid mt={5} mb={5} container >
  26. <Grid item xs={6} sx={{ borderRight: 1 , borderColor: 'grey.500' }}>
  27. <Typography mb={4} variant="h3">個人用戶</Typography>
  28. <Button variant="outlined" startIcon={<img src={iAmSmartICon} alt="iAM Smart" width="30" />}>以「智方便」繼續</Button>
  29. <Box mt={4} ml={2} mr={2} bgcolor="grey.100" p={1.5} >
  30. <Typography textAlign='justify' variant="body1" display="block" gutterBottom>
  31. 你可點擊「智方便」按鈕,系統會自動輸入個人資料,或自行輸入個人資料,以即時啟動憲報刊登公告帳戶。
  32. <br/>如欲使用「智方便」提供個人資料,請先下載「智方便」流動應用程式並登記成為「智方便」用戶。
  33. </Typography>
  34. <Link href="#">了解更多</Link>
  35. </Box>
  36. <Typography m={5}>或</Typography>
  37. <Button href="/registerFrom" variant="contained">申請個人用戶</Button>
  38. <Typography ml={4} mr={4} mt={4} variant="body1" display="block" sx={{fontWeight: 'bold'}} gutterBottom>
  39. 需上載身份證明文件數碼檔案以進行網上申請。
  40. <br/>如:香港身份證;護照;往來港澳通行證等
  41. </Typography>
  42. </Grid>
  43. <Grid item xs={6} sx={{ borderLeft: 1 ,borderColor: 'grey.500' }}>
  44. <Typography mb={4} variant="h3">機構/公司用戶</Typography>
  45. <Button href="/registerFrom" variant="contained">申請機構/公司用戶</Button>
  46. <Typography ml={4} mr={4} mt={4} variant="body1" display="block" sx={{fontWeight: 'bold'}} gutterBottom>
  47. 需上載以下任何一份證明文件以進行網上申請。
  48. <br/>如:商業登記證;專業執業證書
  49. </Typography>
  50. </Grid>
  51. </Grid>
  52. </Box>
  53. </Card >
  54. </center>
  55. </Stack>
  56. );
  57. export default RegisterCustom;