import React, {useState} from "react"; import {Box, Button, HStack, Image, Input, Stack, Text,} from "@chakra-ui/react"; const ForgotPassword = () => { const [email, setEmail] = useState(); const backArrow = "https://firebasestorage.googleapis.com/v0/b/imagestorage-7b2d2.appspot.com/o/babu_back_arrow.svg?alt=media&token=1acaf12e-4496-4ef0-aaae-c3bfca9c2b5f" return ( Forgot Password Email Address { setEmail(e.target.value); }} _placeholder={{ fontSize: "14px", fontFamily: "MaisonMedium", fontStyle: "normal", fontWeight: "400", lineHeight: "24px", textAlign: "left", letterSpacing: "0.04px", }} _focus={{ borderBottom: "1px solid #ADB4C7", }} borderBottom="1px solid #ADB4C7" borderRadius="none" isRequired /> ); }; export default ForgotPassword; // import React, { useState } from "react"; // import "../../index.css"; // import { // Stack, // HStack, // Textarea, // Button, // Box, // Text, // Center, // Flex, // Select, // Image, // Input, // InputGroup, // InputRightElement, // InputLeftElement, // } from "@chakra-ui/react"; // // // const ForgotPassword = () => { // const [email, setEmail] = useState(); // const backArrow="https://firebasestorage.googleapis.com/v0/b/imagestorage-7b2d2.appspot.com/o/babu_back_arrow.svg?alt=media&token=1acaf12e-4496-4ef0-aaae-c3bfca9c2b5f" // return ( // // // // // // // Forgot Password // // // // // // // Email Address // // { // setEmail(e.target.value); // }} // _placeholder={{ // fontSize: "14px", // fontFamily: "MaisonMedium", // fontStyle: "normal", // fontWeight: "400", // lineHeight: "24px", // textAlign: "left", // letterSpacing: "0.04px", // }} // _focus={{ // borderBottom: "1px solid #ADB4C7", // }} // borderBottom="1px solid #ADB4C7" // borderRadius="none" // isRequired // /> // // // // // // // // ); // }; // // export default ForgotPassword;