import React, { useState } from 'react'; import { TextField, Button, Typography, Stack, Box, IconButton, InputAdornment } from '@mui/material'; import { useTheme } from '@mui/material/styles'; import VisibilityOffOutlinedIcon from '@mui/icons-material/VisibilityOffOutlined'; import { VisibilityOutlined } from '@mui/icons-material'; const LoginForm = () => { const theme = useTheme(); const [showPassword, setShowPassword] = useState(false); const handleTogglePassword = () => { setShowPassword((prev) => !prev); }; return ( {/* Logo */} logo Login Enter your username and password to access your account securely. Welcome back to our service! {/* Email Input */} Email {/* Password Input */} Password {showPassword ? : } ) }} /> {/* Login Button */} {/* Divider */} Or {/* Google Button */} {/* Facebook Button */} {/* Register Link */} Don’t have an account?{' '} Register {/* Terms */} By logging in, I agree to the{' '} Terms of Service {' '} and{' '} Privacy Policy . ); }; export default LoginForm;