import React from "react"; import { Link } from "react-router-dom"; import { useFormValidation } from "@hooks/useFormValidation"; import { useNotification } from "@hooks/useNotification"; import { AuthHeader } from "@components/Common/AuthHeader/AuthHeader"; import { Footer } from "@components/Common/Footer/Footer"; import SideBar from "@components/SideBar/SideBar"; import StepsForCandidate from "@components/StepsForCandidate/StepsForCandidate"; import arrowBtn from "assets/icons/arrows/arrowRight.svg"; import BackEndImg from "assets/images/partnerProfile/personalBackEnd.svg"; import "./registationForCandidate.scss"; export const RegistrationForCandidate = () => { const apiEndpoint = "/register/sign-up"; const fields = { username: "", summary: "", email: "", tg: "", password: "", secondPassword: "" }; const { showNotification } = useNotification(); const showNotificationError = () => { showNotification({ show: true, text: "Аккаунт с таким логином или email уже существует", type: "error" }); }; const showNotificationTrue = () => { showNotification({ show: true, text: "Аккаунт успешно создан", type: "success" }); }; const { formData, validationErrors, handleChange, handleSubmit } = useFormValidation( apiEndpoint, fields, showNotificationError, showNotificationTrue ); return (

Хочу в команду IT-специалистов

Для нас не имеет значения Ваша локация.

img

Backend разработчики

Java PHP Python C# React Vue.js NodeJs Golang Ruby JavaScript

img
{/* форма регистрации */}
{validationErrors.username}
{validationErrors.summary}
{validationErrors.email}
{validationErrors.tg}
{validationErrors.password}
{validationErrors.secondPassword}
); };