"https://www.infixstudios.com/" (Agni studios is the old name new one is Infix Studios) new buisness, a web devlopment services with website devlopment till seo and scaling buisness showing the flow of and animations of lcoal buisness having no digital presence scaling into digital world and growing
Login.js
import React , { useState } from 'react' ; import { Link , useNavigate } from 'react-router-dom' ; const Login = () => { const navigate = useNavigate (); const [ email , setEmail ] = useState ( '' ); const [ password , setPassword ] = useState ( '' ); const [ emailError , setEmailError ] = useState ( '' ); const [ passwordError , setPasswordError ] = useState ( '' ); const [ modalMessage , setModalMessage ] = useState ( '' ); const [ modalVisible , setModalVisible ] = useState ( false ); const handleSubmit = async ( event ) => { event . preventDefault (); // Email validation const emailRegex = / ^ [ a-zA-Z0-9._%+- ] + @ [ a-zA-Z0-9.- ] +\. [ a-zA-Z ] {2,} $ / ; if ( ! emailRegex . test ( email...
Comments
Post a Comment