2023-05-24 13:49:09 +03:00
|
|
|
import React from "react";
|
2023-04-04 19:07:19 +03:00
|
|
|
|
2023-05-30 10:54:47 +03:00
|
|
|
import AuthHeader from "@components/Common/AuthHeader/AuthHeader";
|
2023-05-31 08:36:15 +03:00
|
|
|
import { Footer } from "@components/Common/Footer/Footer";
|
2023-05-30 10:54:47 +03:00
|
|
|
import SideBar from "@components/SideBar/SideBar";
|
|
|
|
import StepsForCandidate from "@components/StepsForCandidate/StepsForCandidate";
|
2023-04-04 19:07:19 +03:00
|
|
|
|
2023-05-30 10:54:47 +03:00
|
|
|
import arrowBtn from "assets/icons/arrows/arrowRight.svg";
|
2023-05-31 08:36:15 +03:00
|
|
|
import BackEndImg from "assets/images/partnerProfile/personalBackEnd.svg";
|
2023-04-04 19:07:19 +03:00
|
|
|
|
2023-05-24 13:49:09 +03:00
|
|
|
import "./registationForCandidate.scss";
|
2023-04-04 19:07:19 +03:00
|
|
|
|
|
|
|
export const RegistrationForCandidate = () => {
|
2023-05-24 13:49:09 +03:00
|
|
|
return (
|
|
|
|
<div className="registrationCandidate">
|
|
|
|
<AuthHeader />
|
|
|
|
<div className="container">
|
|
|
|
<div className="registrationCandidate__start">
|
|
|
|
<h2 className="auth-candidate__start__title">
|
2023-12-05 14:22:45 +03:00
|
|
|
Хочу в команду <span>IT-специалистов</span>
|
2023-05-24 13:49:09 +03:00
|
|
|
</h2>
|
|
|
|
<div className="change-mode__arrow">
|
|
|
|
<img src={arrowBtn}></img>
|
|
|
|
</div>
|
|
|
|
<p className="auth-candidate__start__description">
|
|
|
|
Для нас не имеет значение Ваша локация.
|
|
|
|
</p>
|
|
|
|
<StepsForCandidate step="шаг 2 - заполните данные" />
|
|
|
|
<div className="registrationCandidate__formWrapper">
|
|
|
|
<div className="registrationCandidate__info">
|
|
|
|
<div className="registrationCandidate__info__category">
|
|
|
|
<img src={BackEndImg} alt="img" />
|
|
|
|
<p>Backend разработчики</p>
|
|
|
|
</div>
|
|
|
|
<p className="registrationCandidate__info__skills">
|
|
|
|
Java PHP Python C# React Vue.js NodeJs Golang Ruby JavaScript
|
|
|
|
</p>
|
|
|
|
<div className="registrationCandidate__info__arrow">
|
|
|
|
<img src={arrowBtn} alt="img" />
|
|
|
|
</div>
|
2023-04-04 19:07:19 +03:00
|
|
|
</div>
|
2023-05-24 13:49:09 +03:00
|
|
|
<form className="registrationCandidate__form">
|
|
|
|
<div className="registrationCandidate__form__input">
|
2023-12-04 19:28:40 +03:00
|
|
|
<label htmlFor="name">Ваше имя</label>
|
2023-05-24 13:49:09 +03:00
|
|
|
<input id="name" type="text" placeholder="Имя" />
|
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__input">
|
|
|
|
<label htmlFor="summary">Если есть ссылка на резюме</label>
|
|
|
|
<input id="summary" type="text" placeholder="Резюме" />
|
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__input">
|
2023-12-04 19:28:40 +03:00
|
|
|
<label htmlFor="email">Ваш e-mail</label>
|
|
|
|
<input id="email" type="text" placeholder="E-mail" />
|
2023-05-24 13:49:09 +03:00
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__input">
|
2023-12-04 19:28:40 +03:00
|
|
|
<label htmlFor="tg">Ваш telegram</label>
|
|
|
|
<input id="tg" type="text" placeholder="Telegram" />
|
2023-05-24 13:49:09 +03:00
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__input">
|
2023-12-04 19:28:40 +03:00
|
|
|
<label htmlFor="password">Придумайте пароль</label>
|
2023-05-24 13:49:09 +03:00
|
|
|
<input id="password" type="text" placeholder="Пароль" />
|
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__input">
|
2023-12-04 19:28:40 +03:00
|
|
|
<label htmlFor="secondPassword">Повторите пароль</label>
|
2023-05-24 13:49:09 +03:00
|
|
|
<input id="secondPassword" type="text" placeholder="Пароль" />
|
|
|
|
</div>
|
|
|
|
<div className="registrationCandidate__form__submit">
|
|
|
|
<button>Отправить</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-04-04 19:07:19 +03:00
|
|
|
</div>
|
2023-05-24 13:49:09 +03:00
|
|
|
</div>
|
|
|
|
<SideBar />
|
|
|
|
<Footer />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|