fix login, report textarea
This commit is contained in:
@ -15,6 +15,7 @@ import ModalResetPassword from "@components/Modal/ModalResetPassword/ModalResetP
|
||||
|
||||
import authHead from "assets/icons/authHead.svg";
|
||||
import eyePassword from "assets/icons/passwordIcon.svg";
|
||||
import eyeNoPassword from "assets/icons/eyePassword.svg";
|
||||
|
||||
import "./authBox.scss";
|
||||
|
||||
@ -85,8 +86,8 @@ export const AuthBox = ({ title }) => {
|
||||
</div>
|
||||
)}
|
||||
<form ref={ref} className="auth-box__form">
|
||||
<label htmlFor="login">Ваш e-mail</label>
|
||||
<input id="login" type="text" name="username" placeholder="Логин" />
|
||||
<label htmlFor="e-mail">Ваш e-mail</label>
|
||||
<input id="e-mail" type="text" name="email" placeholder="E-mail" />
|
||||
|
||||
<label htmlFor="password">Ваш пароль</label>
|
||||
<div className="inputWrapper">
|
||||
@ -99,7 +100,7 @@ export const AuthBox = ({ title }) => {
|
||||
<img
|
||||
onClick={() => setShowPassword(!showPassword)}
|
||||
className="eye"
|
||||
src={eyePassword}
|
||||
src={showPassword ? eyePassword : eyeNoPassword}
|
||||
alt="eye"
|
||||
/>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user