In this article, we will learn how to make a login form with validation in react.
First open react project and install react-hook-form
npm install react-hook-form
then import this package in our file
import { useForm } from "react-hook-form";
In file use the methods of this package
const { register, handleSubmit, formState: { errors } } = useForm();
then take input filed
<input type="email"{...register("email", { required: true, pattern: /^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/ })} placeholder="Your email.." />
Display error message
{errors.email && <p className="error">Please enter valid Email !</p>}
My file looks like
import './App.css'; import { useForm } from "react-hook-form"; function App() { const { register, handleSubmit, formState: { errors } } = useForm(); const onSubmit = (e) => { alert("data submitted") }; return ( <> <div className="container w-25 p-3 background mt-5"> <h3 className='text-center'>Login Form</h3> <form onSubmit={handleSubmit(onSubmit)}> <div className="row my-3"> <div className="col-3"> <label for="email">Email : </label> </div> <div className="col-9"> <input type="email"{...register("email", { required: true, pattern: /^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/ })} placeholder="Your email.." /> {errors.email && <p className="error">Please enter valid Email !</p>} </div> </div> <div className="row"> <div className="col-3"> <label for="password">Password : </label> </div> <div className="col-9"> <input type="password" {...register("password", { required: true, pattern: /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,32}$/ })} placeholder="Your password.." /> {errors.password && <p className="error">Please enter valid Password !</p>} </div> </div> <div className='mt-3'> <button type='submit' className='btn btn-outline-success'>Login</button> </div> </form> </div> </> ); } export default App;
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular