diff --git a/src/view/register/index.js b/src/view/register/index.js index 3657437..46b59ed 100644 --- a/src/view/register/index.js +++ b/src/view/register/index.js @@ -21,6 +21,8 @@ const Register = ({ activeLogin }) => { const timeoutRef = useRef(null); const [activeStep, setActiveStep] = useState([true, false, false, false]); const [error, setError] = useState(''); + + const [userInfo, setUserInfo] = useState({ name: null, @@ -54,6 +56,112 @@ const Register = ({ activeLogin }) => { }); + const finalViewInfo = [ + { + title: 'نام', + value: userInfo.name + }, + { + title: 'نام خانوادگی', + value: userInfo.familyName + }, + { + title: 'کد ملی', + value: userInfo.nationalId + }, + { + title: 'تاریخ تولد', + value: userInfo.birthDate + }, + { + title: 'نام مدرسه ', + value: userInfo.schoolName + }, + { + title: 'شهر', + value: userInfo.city + }, + { + title: 'منطقه', + value: userInfo.state + }, + { + title: 'نام', + value: userInfo.fatherName + }, + { + title: 'نام خانوادگی', + value: userInfo.fatherFamilyName + }, + { + title: 'کدملی', + value: userInfo.fatherNationalId + }, + { + title: 'مدرک تحصیلی', + value: userInfo.fatherMajor + }, + { + title: 'تلفن همراه', + value: userInfo.fatherPhoneNumber + }, + { + title: 'شغل', + value: userInfo.fatherJob + }, + { + title: 'محل کار', + value: userInfo.fatherJobAddress + }, + { + title: 'تلفن محل کار', + value: userInfo.fatherJobPhoneNumber + }, + { + title: 'نام', + value: userInfo.motherName + }, + { + title: 'نام خانوادگی', + value: userInfo.motherFamilyName + }, + { + title: 'کدملی', + value: userInfo.motherNationalId + }, + { + title: 'مدرک تحصیلی', + value: userInfo.motherMajor + }, + { + title: 'تلفن همراه', + value: userInfo.motherPhoneNumber + }, + { + title: 'شغل', + value: userInfo.motherJob + }, + { + title: 'محل کار', + value: userInfo.motherJobAddress + }, + { + title: 'تلفن محل کار', + value: userInfo.motherJobPhoneNumber + }, + { + title: 'تعداد افراد خانواده', + value: userInfo.familyNumber + }, + { + title: 'نشانی محل سکونت', + value: userInfo.address + }, + { + title: 'تلفن ثابت', + value: userInfo.homePhoneNumber + }, + ]; const focusHandler = (id) => { let inputs = document.querySelectorAll(".Login-box-form-item"); @@ -268,7 +376,7 @@ const Register = ({ activeLogin }) => {