This commit is contained in:
Iliyan Angelov
2025-11-16 20:05:08 +02:00
parent 98ccd5b6ff
commit 48353cde9c
118 changed files with 9488 additions and 1336 deletions

View File

@@ -61,35 +61,42 @@ const LoginPage: React.FC = () => {
return (
<div className="min-h-screen bg-gradient-to-br
from-blue-50 to-indigo-100 flex items-center
justify-center py-12 px-4 sm:px-6 lg:px-8"
from-gray-50 via-gray-100 to-gray-50
flex items-center justify-center py-12 px-4
sm:px-6 lg:px-8 relative overflow-hidden"
>
<div className="max-w-md w-full space-y-8">
{/* Luxury background pattern */}
<div className="absolute inset-0 opacity-5" style={{
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
}}></div>
<div className="max-w-md w-full space-y-8 relative z-10">
{/* Header */}
<div className="text-center">
<div className="flex justify-center mb-4">
<div className="p-3 bg-blue-600 rounded-full">
<Hotel className="w-12 h-12 text-white" />
<div className="relative p-4 bg-gradient-to-br from-[#d4af37] to-[#c9a227] rounded-full shadow-lg shadow-[#d4af37]/30">
<Hotel className="w-12 h-12 text-[#0f0f0f] relative z-10" />
<div className="absolute inset-0 bg-gradient-to-br from-[#f5d76e] to-[#d4af37] rounded-full blur-xl opacity-50"></div>
</div>
</div>
<h2 className="text-3xl font-bold text-gray-900">
Login
<h2 className="text-3xl font-serif font-semibold text-gray-900 tracking-tight">
Welcome Back
</h2>
<p className="mt-2 text-sm text-gray-600">
Welcome back to Hotel Booking
<p className="mt-2 text-sm text-gray-600 font-light tracking-wide">
Sign in to Luxury Hotel
</p>
</div>
{/* Login Form */}
<div className="bg-white rounded-lg shadow-xl p-8">
<div className="luxury-glass rounded-sm p-8 border border-[#d4af37]/20 shadow-2xl">
<form onSubmit={handleSubmit(onSubmit)}
className="space-y-6"
>
{/* Error Message */}
{error && (
<div className="bg-red-50 border border-red-200
text-red-700 px-4 py-3 rounded-lg
text-sm"
<div className="bg-red-50/80 backdrop-blur-sm border border-red-200
text-red-700 px-4 py-3 rounded-sm
text-sm font-light"
>
{error}
</div>
@@ -100,7 +107,7 @@ const LoginPage: React.FC = () => {
<label
htmlFor="email"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Email
</label>
@@ -115,18 +122,16 @@ const LoginPage: React.FC = () => {
id="email"
type="email"
autoComplete="email"
className={`block w-full pl-10 pr-3 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${errors.email
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 focus:ring-blue-500'
}`}
className={`luxury-input pl-10 ${
errors.email
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="email@example.com"
/>
</div>
{errors.email && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.email.message}
</p>
)}
@@ -137,7 +142,7 @@ const LoginPage: React.FC = () => {
<label
htmlFor="password"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Password
</label>
@@ -152,34 +157,31 @@ const LoginPage: React.FC = () => {
id="password"
type={showPassword ? 'text' : 'password'}
autoComplete="current-password"
className={`block w-full pl-10 pr-10 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${errors.password
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 focus:ring-blue-500'
}`}
className={`luxury-input pl-10 pr-10 ${
errors.password
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="••••••••"
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute inset-y-0 right-0
pr-3 flex items-center"
pr-3 flex items-center transition-colors
hover:text-[#d4af37]"
>
{showPassword ? (
<EyeOff className="h-5 w-5
text-gray-400 hover:text-gray-600"
text-gray-400"
/>
) : (
<Eye className="h-5 w-5 text-gray-400
hover:text-gray-600"
/>
<Eye className="h-5 w-5 text-gray-400" />
)}
</button>
</div>
{errors.password && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.password.message}
</p>
)}
@@ -192,14 +194,14 @@ const LoginPage: React.FC = () => {
{...register('rememberMe')}
id="rememberMe"
type="checkbox"
className="h-4 w-4 text-blue-600
focus:ring-blue-500 border-gray-300
rounded cursor-pointer"
className="h-4 w-4 text-[#d4af37]
focus:ring-[#d4af37]/50 border-gray-300
rounded-sm cursor-pointer accent-[#d4af37]"
/>
<label
htmlFor="rememberMe"
className="ml-2 block text-sm
text-gray-700 cursor-pointer"
text-gray-700 cursor-pointer font-light tracking-wide"
>
Remember me
</label>
@@ -208,8 +210,8 @@ const LoginPage: React.FC = () => {
<Link
to="/forgot-password"
className="text-sm font-medium
text-blue-600 hover:text-blue-500
transition-colors"
text-[#d4af37] hover:text-[#c9a227]
transition-colors tracking-wide"
>
Forgot password?
</Link>
@@ -219,27 +221,20 @@ const LoginPage: React.FC = () => {
<button
type="submit"
disabled={isLoading}
className="w-full flex items-center
justify-center py-3 px-4 border
border-transparent rounded-lg shadow-sm
text-sm font-medium text-white
bg-blue-600 hover:bg-blue-700
focus:outline-none focus:ring-2
focus:ring-offset-2 focus:ring-blue-500
disabled:opacity-50 disabled:cursor-not-allowed
transition-colors"
className="btn-luxury-primary w-full flex items-center
justify-center py-3 px-4 text-sm relative"
>
{isLoading ? (
<>
<Loader2 className="animate-spin -ml-1
mr-2 h-5 w-5"
mr-2 h-5 w-5 relative z-10"
/>
Processing...
<span className="relative z-10">Processing...</span>
</>
) : (
<>
<LogIn className="-ml-1 mr-2 h-5 w-5" />
Login
<LogIn className="-ml-1 mr-2 h-5 w-5 relative z-10" />
<span className="relative z-10">Sign In</span>
</>
)}
</button>
@@ -247,12 +242,12 @@ const LoginPage: React.FC = () => {
{/* Register Link */}
<div className="mt-6 text-center">
<p className="text-sm text-gray-600">
<p className="text-sm text-gray-600 font-light tracking-wide">
Don't have an account?{' '}
<Link
to="/register"
className="font-medium text-blue-600
hover:text-blue-500 transition-colors"
className="font-medium text-[#d4af37]
hover:text-[#c9a227] transition-colors"
>
Register now
</Link>
@@ -261,19 +256,19 @@ const LoginPage: React.FC = () => {
</div>
{/* Footer Info */}
<div className="text-center text-sm text-gray-500">
<div className="text-center text-sm text-gray-500 font-light tracking-wide">
<p>
By logging in, you agree to our{' '}
<Link
to="/terms"
className="text-blue-600 hover:underline"
className="text-[#d4af37] hover:underline"
>
Terms of Service
</Link>{' '}
and{' '}
<Link
to="/privacy"
className="text-blue-600 hover:underline"
className="text-[#d4af37] hover:underline"
>
Privacy Policy
</Link>

View File

@@ -96,27 +96,33 @@ const RegisterPage: React.FC = () => {
return (
<div
className="min-h-screen bg-gradient-to-br
from-purple-50 to-pink-100 flex items-center
justify-center py-12 px-4 sm:px-6 lg:px-8"
from-gray-50 via-gray-100 to-gray-50 flex items-center
justify-center py-12 px-4 sm:px-6 lg:px-8 relative overflow-hidden"
>
<div className="max-w-md w-full space-y-8">
{/* Luxury background pattern */}
<div className="absolute inset-0 opacity-5" style={{
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
}}></div>
<div className="max-w-md w-full space-y-8 relative z-10">
{/* Header */}
<div className="text-center">
<div className="flex justify-center mb-4">
<div className="p-3 bg-purple-600 rounded-full">
<Hotel className="w-12 h-12 text-white" />
<div className="relative p-4 bg-gradient-to-br from-[#d4af37] to-[#c9a227] rounded-full shadow-lg shadow-[#d4af37]/30">
<Hotel className="w-12 h-12 text-[#0f0f0f] relative z-10" />
<div className="absolute inset-0 bg-gradient-to-br from-[#f5d76e] to-[#d4af37] rounded-full blur-xl opacity-50"></div>
</div>
</div>
<h2 className="text-3xl font-bold text-gray-900">
<h2 className="text-3xl font-serif font-semibold text-gray-900 tracking-tight">
Create Account
</h2>
<p className="mt-2 text-sm text-gray-600">
Create a new account to book hotel rooms
<p className="mt-2 text-sm text-gray-600 font-light tracking-wide">
Join Luxury Hotel for exclusive benefits
</p>
</div>
{/* Register Form */}
<div className="bg-white rounded-lg shadow-xl p-8">
<div className="luxury-glass rounded-sm p-8 border border-[#d4af37]/20 shadow-2xl">
<form
onSubmit={handleSubmit(onSubmit)}
className="space-y-5"
@@ -124,9 +130,9 @@ const RegisterPage: React.FC = () => {
{/* Error Message */}
{error && (
<div
className="bg-red-50 border border-red-200
text-red-700 px-4 py-3 rounded-lg
text-sm"
className="bg-red-50/80 backdrop-blur-sm border border-red-200
text-red-700 px-4 py-3 rounded-sm
text-sm font-light"
>
{error}
</div>
@@ -137,7 +143,7 @@ const RegisterPage: React.FC = () => {
<label
htmlFor="name"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Full Name
</label>
@@ -154,20 +160,16 @@ const RegisterPage: React.FC = () => {
id="name"
type="text"
autoComplete="name"
className={`block w-full pl-10 pr-3 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${
errors.name
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 ' +
'focus:ring-purple-500'
}`}
className={`luxury-input pl-10 ${
errors.name
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="John Doe"
/>
</div>
{errors.name && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.name.message}
</p>
)}
@@ -178,7 +180,7 @@ const RegisterPage: React.FC = () => {
<label
htmlFor="email"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Email
</label>
@@ -195,20 +197,16 @@ const RegisterPage: React.FC = () => {
id="email"
type="email"
autoComplete="email"
className={`block w-full pl-10 pr-3 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${
errors.email
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 ' +
'focus:ring-purple-500'
}`}
className={`luxury-input pl-10 ${
errors.email
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="email@example.com"
/>
</div>
{errors.email && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.email.message}
</p>
)}
@@ -219,7 +217,7 @@ const RegisterPage: React.FC = () => {
<label
htmlFor="phone"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Phone Number (Optional)
</label>
@@ -236,20 +234,16 @@ const RegisterPage: React.FC = () => {
id="phone"
type="tel"
autoComplete="tel"
className={`block w-full pl-10 pr-3 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${
errors.phone
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 ' +
'focus:ring-purple-500'
}`}
className={`luxury-input pl-10 ${
errors.phone
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="0123456789"
/>
</div>
{errors.phone && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.phone.message}
</p>
)}
@@ -260,7 +254,7 @@ const RegisterPage: React.FC = () => {
<label
htmlFor="password"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Password
</label>
@@ -277,38 +271,33 @@ const RegisterPage: React.FC = () => {
id="password"
type={showPassword ? 'text' : 'password'}
autoComplete="new-password"
className={`block w-full pl-10 pr-10 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${
errors.password
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 ' +
'focus:ring-purple-500'
}`}
className={`luxury-input pl-10 pr-10 ${
errors.password
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="••••••••"
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute inset-y-0 right-0
pr-3 flex items-center"
pr-3 flex items-center transition-colors
hover:text-[#d4af37]"
>
{showPassword ? (
<EyeOff
className="h-5 w-5 text-gray-400
hover:text-gray-600"
className="h-5 w-5 text-gray-400"
/>
) : (
<Eye
className="h-5 w-5 text-gray-400
hover:text-gray-600"
className="h-5 w-5 text-gray-400"
/>
)}
</button>
</div>
{errors.password && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.password.message}
</p>
)}
@@ -322,7 +311,13 @@ const RegisterPage: React.FC = () => {
>
<div
className={`h-full transition-all
duration-300 ${passwordStrength.color}`}
duration-300 ${
passwordStrength.strength >= 4
? 'bg-[#d4af37]'
: passwordStrength.strength >= 3
? 'bg-yellow-500'
: 'bg-red-500'
}`}
style={{
width: `${
(passwordStrength.strength / 5) * 100
@@ -331,7 +326,7 @@ const RegisterPage: React.FC = () => {
/>
</div>
<span className="text-xs font-medium
text-gray-600"
text-gray-600 tracking-wide"
>
{passwordStrength.label}
</span>
@@ -369,7 +364,7 @@ const RegisterPage: React.FC = () => {
<label
htmlFor="confirmPassword"
className="block text-sm font-medium
text-gray-700 mb-2"
text-gray-700 mb-2 tracking-wide"
>
Confirm Password
</label>
@@ -388,15 +383,11 @@ const RegisterPage: React.FC = () => {
showConfirmPassword ? 'text' : 'password'
}
autoComplete="new-password"
className={`block w-full pl-10 pr-10 py-3
border rounded-lg focus:outline-none
focus:ring-2 transition-colors
${
errors.confirmPassword
? 'border-red-300 focus:ring-red-500'
: 'border-gray-300 ' +
'focus:ring-purple-500'
}`}
className={`luxury-input pl-10 pr-10 ${
errors.confirmPassword
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: ''
}`}
placeholder="••••••••"
/>
<button
@@ -405,23 +396,22 @@ const RegisterPage: React.FC = () => {
setShowConfirmPassword(!showConfirmPassword)
}
className="absolute inset-y-0 right-0
pr-3 flex items-center"
pr-3 flex items-center transition-colors
hover:text-[#d4af37]"
>
{showConfirmPassword ? (
<EyeOff
className="h-5 w-5 text-gray-400
hover:text-gray-600"
className="h-5 w-5 text-gray-400"
/>
) : (
<Eye
className="h-5 w-5 text-gray-400
hover:text-gray-600"
className="h-5 w-5 text-gray-400"
/>
)}
</button>
</div>
{errors.confirmPassword && (
<p className="mt-1 text-sm text-red-600">
<p className="mt-1 text-sm text-red-600 font-light">
{errors.confirmPassword.message}
</p>
)}
@@ -431,28 +421,20 @@ const RegisterPage: React.FC = () => {
<button
type="submit"
disabled={isLoading}
className="w-full flex items-center
justify-center py-3 px-4 border
border-transparent rounded-lg shadow-sm
text-sm font-medium text-white
bg-purple-600 hover:bg-purple-700
focus:outline-none focus:ring-2
focus:ring-offset-2 focus:ring-purple-500
disabled:opacity-50
disabled:cursor-not-allowed
transition-colors"
className="btn-luxury-primary w-full flex items-center
justify-center py-3 px-4 text-sm relative"
>
{isLoading ? (
<>
<Loader2 className="animate-spin -ml-1
mr-2 h-5 w-5"
mr-2 h-5 w-5 relative z-10"
/>
Processing...
<span className="relative z-10">Processing...</span>
</>
) : (
<>
<UserPlus className="-ml-1 mr-2 h-5 w-5" />
Register
<UserPlus className="-ml-1 mr-2 h-5 w-5 relative z-10" />
<span className="relative z-10">Register</span>
</>
)}
</button>
@@ -460,12 +442,12 @@ const RegisterPage: React.FC = () => {
{/* Login Link */}
<div className="mt-6 text-center">
<p className="text-sm text-gray-600">
<p className="text-sm text-gray-600 font-light tracking-wide">
Already have an account?{' '}
<Link
to="/login"
className="font-medium text-purple-600
hover:text-purple-500 transition-colors"
className="font-medium text-[#d4af37]
hover:text-[#c9a227] transition-colors"
>
Login now
</Link>
@@ -474,19 +456,19 @@ const RegisterPage: React.FC = () => {
</div>
{/* Footer Info */}
<div className="text-center text-sm text-gray-500">
<div className="text-center text-sm text-gray-500 font-light tracking-wide">
<p>
By registering, you agree to our{' '}
<Link
to="/terms"
className="text-purple-600 hover:underline"
className="text-[#d4af37] hover:underline"
>
Terms of Service
</Link>{' '}
and{' '}
<Link
to="/privacy"
className="text-purple-600 hover:underline"
className="text-[#d4af37] hover:underline"
>
Privacy Policy
</Link>
@@ -502,13 +484,13 @@ const PasswordRequirement: React.FC<{
met: boolean;
text: string;
}> = ({ met, text }) => (
<div className="flex items-center gap-2 text-xs">
<div className="flex items-center gap-2 text-xs font-light">
{met ? (
<CheckCircle2 className="h-4 w-4 text-green-500" />
<CheckCircle2 className="h-4 w-4 text-[#d4af37]" />
) : (
<XCircle className="h-4 w-4 text-gray-300" />
)}
<span className={met ? 'text-green-600' : 'text-gray-500'}>
<span className={met ? 'text-[#c9a227] font-medium' : 'text-gray-500'}>
{text}
</span>
</div>