More
This commit is contained in:
@@ -13,6 +13,7 @@ import { v4 as uuidv4 } from "uuid";
|
|||||||
import { collection, setDoc, doc } from "firebase/firestore";
|
import { collection, setDoc, doc } from "firebase/firestore";
|
||||||
import LoadingSpinner from "../../pageElements/LoadingSpinner";
|
import LoadingSpinner from "../../pageElements/LoadingSpinner";
|
||||||
import { splitEvery } from "../../Utils/Array";
|
import { splitEvery } from "../../Utils/Array";
|
||||||
|
import { ArrowLeftSquare, ArrowRightSquare } from "react-bootstrap-icons";
|
||||||
import {
|
import {
|
||||||
getFormDataDefaults,
|
getFormDataDefaults,
|
||||||
getValidatedFormData,
|
getValidatedFormData,
|
||||||
@@ -629,7 +630,14 @@ const SignupPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="radio-group-super">
|
<div className="radio-group-super">
|
||||||
<div className="toggle-arrow-box"></div>
|
<div className="toggle-arrow-box">
|
||||||
|
<ArrowRightSquare
|
||||||
|
className="arrow-left-toggle"
|
||||||
|
color="#1a76c7"
|
||||||
|
size="30px"
|
||||||
|
onClick={handleLeftArrowClick}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div className="radio-group-box">
|
<div className="radio-group-box">
|
||||||
{signupRadioFields?.slice(valX, valY).map((option, index) => (
|
{signupRadioFields?.slice(valX, valY).map((option, index) => (
|
||||||
<div className="signup-radio-container">
|
<div className="signup-radio-container">
|
||||||
@@ -650,7 +658,14 @@ const SignupPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div className="toggle-arrow-box"></div>
|
<div className="toggle-arrow-box">
|
||||||
|
<ArrowRightSquare
|
||||||
|
className="arrow-left-toggle"
|
||||||
|
color="#1a76c7"
|
||||||
|
size="30px"
|
||||||
|
onClick={handleRightArrowClick}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{showAddAccount && !isBusy ? (
|
{showAddAccount && !isBusy ? (
|
||||||
<div className="show-addaccount-wrapper">
|
<div className="show-addaccount-wrapper">
|
||||||
|
|||||||
Reference in New Issue
Block a user