// material-ui import { Dialog, DialogTitle, DialogContent, Link, Button, Card, Box, Grid } from '@mui/material'; import Typography from '@mui/material/Typography'; import iAmSmartICon from 'assets/images/icons/icon_iAmSmart.png'; import banner from 'assets/images/bg_ml.jpg'; import { Stack } from '../../../node_modules/@mui/material/index'; import { iAmSmartPath, clientId, getBowserType , iAmSmartCallbackPath} from 'auth/utils' import * as React from 'react'; // ================================|| LOGIN ||================================ // const RegisterCustom = () => { const [isPopUp, setIsPopUp] = React.useState(false); const registerWithIAmSmart = () => { setIsPopUp(true); } const getQRWithIAmSmart = () => { let callbackUrl = "https://"+iAmSmartCallbackPath()+"/iamsmart/registrycallback"; let url = iAmSmartPath + "/api/v1/auth/getQR" + "?clientID=" + clientId + "&responseType=code" +"&source=" + getBowserType() +"&redirectURI="+encodeURIComponent(callbackUrl) +"&scope="+encodeURIComponent("eidapi_auth eidapi_profiles") +"&lang=zh-HK"//en-US, zh-HK, or zh-CN //+"&state=" +"&brokerPage=false" window.location.assign(url); } return ( banner
*': { flexGrow: 1, flexBasis: '50%' }, backgroundColor: "secondary" }} > 立即成為憲報刊登公告用戶 只需4-5分鐘 個人用戶 你可點擊「智方便」按鈕,系統會自動輸入個人資料,或自行輸入個人資料,以即時啟動憲報刊登公告帳戶。
如欲使用「智方便」提供個人資料,請先下載「智方便」流動應用程式並登記成為「智方便」用戶。
了解更多
需上載身份證明文件數碼檔案以進行網上申請。
如:香港身份證; 護照; 中國內地身份證; 專業執業証書等
機構/公司用戶 需上載以下任何一份證明文件以進行網上申請。
如:商業登記證;專業執業證書
setIsPopUp(false)} > 授權「智方便」提供個人資料 為完成開戶並建立與「智方便」的連接,請授權「智方便」提供以下個人資料: - 中文姓名 - 英文姓名 - 身份證號碼 - 電郵地址 - 手機號碼 - 住宅地址
了解更多
); }; export default RegisterCustom;