forked from dhairyagothi/StationGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dhairyagothi#166 from Ishika-Gupta06/main
Strong password recommendation closes: dhairyagothi#157
- Loading branch information
Showing
1 changed file
with
141 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,182 +1,156 @@ | ||
import React, { useState } from "react"; | ||
import logo from "../assets/stationsaarthi.svg"; // Ensure the path is correct | ||
import { useNavigate } from "react-router-dom"; | ||
import backicon from "../assets/svg/backicon.svg"; | ||
import { AiFillEye, AiFillEyeInvisible } from "react-icons/ai"; // Import the eye icons | ||
import React, { useState, useEffect } from 'react'; | ||
import logo from '../assets/stationsaarthi.svg'; | ||
import { useNavigate } from 'react-router-dom'; | ||
import backicon from '../assets/svg/backicon.svg'; | ||
|
||
const Register = () => { | ||
const navigate = useNavigate(); | ||
const LoginClick = () => { | ||
navigate("/Login"); // Navigates to the login page | ||
}; | ||
const HomeClick = () => { | ||
navigate("/"); // Navigates to the home page | ||
}; | ||
const navigate = useNavigate(); | ||
const LoginClick = () => navigate('/Login'); | ||
const HomeClick = () => navigate('/'); | ||
|
||
const [name, setName] = useState(""); | ||
const [phoneNumber, setPhoneNumber] = useState(""); | ||
const [email, setEmail] = useState(""); | ||
const [password, setPassword] = useState(""); | ||
const [showPassword, setShowPassword] = useState(false); // State for password visibility | ||
const [name, setName] = useState(''); | ||
const [phoneNumber, setPhoneNumber] = useState(''); | ||
const [email, setEmail] = useState(''); | ||
const [password, setPassword] = useState(''); | ||
const [confirmationMessage, setConfirmationMessage] = useState(''); | ||
const [passwordStrength, setPasswordStrength] = useState(''); // State for password strength feedback | ||
|
||
const handleRegister = (e) => { | ||
e.preventDefault(); | ||
// Handle registration logic here | ||
}; | ||
const handleRegister = (e) => { | ||
e.preventDefault(); | ||
setConfirmationMessage("Your account is created successfully. Please login to access the website."); | ||
setName(''); | ||
setPhoneNumber(''); | ||
setEmail(''); | ||
setPassword(''); | ||
}; | ||
|
||
return ( | ||
<> | ||
<div className="flex flex-col items-center justify-center min-h-screen px-4 bg-gradient-to-b from-blue-100 to-blue-5000"> | ||
{/* Logo and Title */} | ||
<div> | ||
<button onClick={HomeClick}> | ||
<img | ||
src={backicon} | ||
alt="" | ||
className="fixed left-[1vh] h-[9vh] w-auto" | ||
/> | ||
</button> | ||
</div> | ||
<div className="mb-6 text-center"> | ||
<img | ||
src={logo} | ||
alt="Station Saarthi Logo" | ||
className="w-20 mx-auto mb-2 h-22" | ||
/> | ||
<h1 className="text-2xl font-bold text-gray-800">Station Saarthi</h1> | ||
<p className="mt-1 text-sm text-gray-700"> | ||
Your Trusted Platform Guide | ||
</p> | ||
</div> | ||
// Use effect to clear the confirmation message after 3 seconds | ||
useEffect(() => { | ||
if (confirmationMessage) { | ||
const timer = setTimeout(() => setConfirmationMessage(''), 3000); | ||
return () => clearTimeout(timer); | ||
} | ||
}, [confirmationMessage]); | ||
|
||
{/* Registration Form */} | ||
<form | ||
onSubmit={handleRegister} | ||
className="w-full max-w-sm p-6 bg-white rounded-lg shadow-md" | ||
> | ||
{/* Register Heading */} | ||
<h2 className="py-1 mb-4 text-xl font-bold text-center bg-blue-100 border border-blue-300 shadow-sm rounded-3xl"> | ||
Register | ||
</h2> | ||
// Function to check password strength | ||
const checkPasswordStrength = (password) => { | ||
if (password.length < 6) { | ||
return "Weak"; | ||
} else if (password.length >= 6 && /[A-Z]/.test(password) && /[0-9]/.test(password) && /[!@#$%^&*]/.test(password)) { | ||
return "Strong"; | ||
} else { | ||
return "Moderate"; | ||
} | ||
}; | ||
|
||
{/* Name Input */} | ||
<div className="mb-4"> | ||
<label | ||
className="block mb-1 font-semibold text-gray-700" | ||
htmlFor="name" | ||
> | ||
Name | ||
</label> | ||
<input | ||
type="text" | ||
id="name" | ||
value={name} | ||
onChange={(e) => setName(e.target.value)} | ||
placeholder="Enter your name" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
</div> | ||
// Update password strength when password changes | ||
useEffect(() => { | ||
setPasswordStrength(checkPasswordStrength(password)); | ||
}, [password]); | ||
|
||
{/* Phone Number Input */} | ||
<div className="mb-4"> | ||
<label | ||
className="block mb-1 font-medium text-gray-700" | ||
htmlFor="phoneNumber" | ||
> | ||
Phone Number | ||
</label> | ||
<input | ||
type="tel" | ||
id="phoneNumber" | ||
value={phoneNumber} | ||
onChange={(e) => setPhoneNumber(e.target.value)} | ||
placeholder="Enter your phone number" | ||
pattern="\d{10}" | ||
maxLength="10" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
{phoneNumber && phoneNumber.length !== 10 && ( | ||
<p className="text-sm text-red-500"> | ||
Please enter a valid 10-digit phone number. | ||
</p> | ||
)} | ||
</div> | ||
return ( | ||
<> | ||
<div className="flex flex-col items-center justify-center min-h-screen px-4 bg-gradient-to-b from-blue-100 to-blue-5000 relative"> | ||
{confirmationMessage && ( | ||
<div className="fixed top-0 left-0 w-full p-3 text-center text-white bg-green-600 bg-opacity-80"> | ||
{confirmationMessage} | ||
</div> | ||
)} | ||
|
||
<div> | ||
<button onClick={HomeClick}> | ||
<img src={backicon} alt="" className='fixed left-[1vh] h-[9vh] w-auto' /> | ||
</button> | ||
</div> | ||
<div className="mb-6 text-center"> | ||
<img src={logo} alt="Station Saarthi Logo" className="w-20 mx-auto mb-2 h-22" /> | ||
<h1 className="text-2xl font-bold text-gray-800">Station Saarthi</h1> | ||
<p className="mt-1 text-sm text-gray-700">Your Trusted Platform Guide</p> | ||
</div> | ||
|
||
{/* Email Input */} | ||
<div className="mb-4"> | ||
<label | ||
className="block mb-1 font-medium text-gray-700" | ||
htmlFor="email" | ||
> | ||
</label> | ||
<input | ||
type="email" | ||
id="email" | ||
value={email} | ||
onChange={(e) => setEmail(e.target.value)} | ||
placeholder="Enter your email" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
</div> | ||
<form onSubmit={handleRegister} className="w-full max-w-sm p-6 bg-white rounded-lg shadow-md"> | ||
<h2 className="py-1 mb-4 text-xl font-bold text-center bg-blue-100 border border-blue-300 shadow-sm rounded-3xl"> | ||
Register | ||
</h2> | ||
|
||
{/* Password Input with Eye Icon */} | ||
<div className="mb-5 relative"> | ||
<label | ||
className="block mb-1 font-medium text-gray-700" | ||
htmlFor="password" | ||
> | ||
Password | ||
</label> | ||
<input | ||
type={showPassword ? "text" : "password"} // Toggle input type based on showPassword state | ||
id="password" | ||
value={password} | ||
onChange={(e) => setPassword(e.target.value)} | ||
placeholder="Create a password" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
{/* Eye Icon to toggle password visibility */} | ||
<button | ||
type="button" | ||
className="absolute top-9 right-4" // Positioning the icon inside the input field | ||
onClick={() => setShowPassword(!showPassword)} // Toggle the showPassword state | ||
> | ||
{showPassword ? ( | ||
<AiFillEyeInvisible size={24} /> | ||
) : ( | ||
<AiFillEye size={24} /> | ||
)} | ||
</button> | ||
</div> | ||
<div className="mb-4"> | ||
<label className="block mb-1 font-semibold text-gray-700" htmlFor="name">Name</label> | ||
<input | ||
type="text" | ||
id="name" | ||
value={name} | ||
onChange={(e) => setName(e.target.value)} | ||
placeholder="Enter your name" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
</div> | ||
|
||
{/* Register Button */} | ||
<button | ||
type="submit" | ||
className="w-full py-2 text-sm font-semibold text-white transition duration-300 ease-in-out transform bg-blue-500 rounded-md hover:bg-blue-600 hover:scale-105" | ||
> | ||
Register | ||
</button> | ||
</form> | ||
<div className="mb-4"> | ||
<label className="block mb-1 font-medium text-gray-700" htmlFor="phoneNumber">Phone Number</label> | ||
<input | ||
type="tel" | ||
id="phoneNumber" | ||
value={phoneNumber} | ||
onChange={(e) => setPhoneNumber(e.target.value)} | ||
placeholder="Enter your phone number" | ||
pattern="\d{10}" | ||
maxLength="10" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
{phoneNumber && phoneNumber.length !== 10 && ( | ||
<p className="text-sm text-red-500">Please enter a valid 10-digit phone number.</p> | ||
)} | ||
</div> | ||
|
||
{/* Already have an account link */} | ||
<p className="mt-4 text-sm text-gray-700"> | ||
Already have an account?{" "} | ||
<button | ||
onClick={LoginClick} | ||
className="text-blue-500 underline cursor-pointer" | ||
> | ||
{" "} | ||
Login | ||
</button> | ||
</p> | ||
</div> | ||
</> | ||
); | ||
<div className="mb-4"> | ||
<label className="block mb-1 font-medium text-gray-700" htmlFor="email">Email</label> | ||
<input | ||
type="email" | ||
id="email" | ||
value={email} | ||
onChange={(e) => setEmail(e.target.value)} | ||
placeholder="Enter your email" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
</div> | ||
|
||
<div className="mb-5"> | ||
<label className="block mb-1 font-medium text-gray-700" htmlFor="password">Password</label> | ||
<input | ||
type="password" | ||
id="password" | ||
value={password} | ||
onChange={(e) => setPassword(e.target.value)} | ||
placeholder="Create a password" | ||
className="w-full px-3 py-2 text-sm border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" | ||
required | ||
/> | ||
<p className={`mt-1 text-sm ${passwordStrength === "Strong" ? 'text-green-500' : passwordStrength === "Moderate" ? 'text-yellow-500' : 'text-red-500'}`}> | ||
{password && `Password strength: ${passwordStrength}`} | ||
</p> | ||
{passwordStrength === "Weak" && ( | ||
<p className="text-xs text-gray-500">Try using a longer password with uppercase letters, numbers, and symbols for a stronger password.</p> | ||
)} | ||
</div> | ||
|
||
<button | ||
type="submit" | ||
className="w-full py-2 text-sm font-semibold text-white transition duration-200 ease-in-out transform bg-blue-500 rounded-md hover:bg-blue-600 hover:scale-105" | ||
> | ||
Register | ||
</button> | ||
</form> | ||
|
||
<p className="mt-4 text-sm text-gray-700"> | ||
Already have an account?{' '} | ||
<button onClick={LoginClick} className="text-blue-500 underline cursor-pointer"> Login</button> | ||
</p> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Register; |