aethex.live/app/login/page.tsx

143 lines
5.4 KiB
TypeScript

'use client'
import { useState } from 'react'
import { createClient } from '@/lib/supabase/client'
import { useRouter } from 'next/navigation'
export default function LoginPage() {
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [isSignUp, setIsSignUp] = useState(false)
const [loading, setLoading] = useState(false)
const [error, setError] = useState('')
const [message, setMessage] = useState('')
const router = useRouter()
const supabase = createClient()
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setLoading(true)
setError('')
setMessage('')
try {
if (isSignUp) {
const { error } = await supabase.auth.signUp({
email,
password,
options: {
emailRedirectTo: `${window.location.origin}/onboarding`,
},
})
if (error) throw error
setMessage('Check your email to verify your account!')
} else {
const { error } = await supabase.auth.signInWithPassword({
email,
password,
})
if (error) throw error
router.push('/')
}
} catch (err: any) {
setError(err.message)
} finally {
setLoading(false)
}
}
const handleGitHubLogin = async () => {
const { error } = await supabase.auth.signInWithOAuth({
provider: 'github',
options: {
redirectTo: `${window.location.origin}/onboarding`,
},
})
if (error) setError(error.message)
}
return (
<div className="min-h-screen bg-black text-white flex items-center justify-center px-4">
<div className="w-full max-w-md">
<h1 className="text-3xl font-bold mb-2 text-center">
{isSignUp ? 'Create Account' : 'Sign In'}
</h1>
<p className="text-gray-400 mb-8 text-center">
{isSignUp ? 'Join AeThex Live' : 'Welcome back to AeThex Live'}
</p>
{error && (
<div className="bg-red-900 border border-red-700 text-red-200 px-4 py-3 rounded mb-4">
{error}
</div>
)}
{message && (
<div className="bg-green-900 border border-green-700 text-green-200 px-4 py-3 rounded mb-4">
{message}
</div>
)}
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="block text-sm font-medium mb-2">Email</label>
<input
type="email"
required
value={email}
onChange={(e) => setEmail(e.target.value)}
className="w-full bg-gray-900 border border-gray-700 rounded px-4 py-2 text-white placeholder-gray-500 focus:outline-none focus:border-purple-500"
placeholder="you@example.com"
/>
</div>
<div>
<label className="block text-sm font-medium mb-2">Password</label>
<input
type="password"
required
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full bg-gray-900 border border-gray-700 rounded px-4 py-2 text-white placeholder-gray-500 focus:outline-none focus:border-purple-500"
placeholder="••••••••"
/>
</div>
<button
type="submit"
disabled={loading}
className="w-full bg-purple-600 hover:bg-purple-700 disabled:opacity-50 disabled:cursor-not-allowed rounded px-6 py-3 font-medium transition-colors"
>
{loading ? 'Loading...' : isSignUp ? 'Sign Up' : 'Sign In'}
</button>
</form>
<div className="my-6 flex items-center">
<div className="flex-1 border-t border-gray-700"></div>
<span className="px-4 text-gray-400 text-sm">or</span>
<div className="flex-1 border-t border-gray-700"></div>
</div>
<button
onClick={handleGitHubLogin}
className="w-full bg-gray-800 hover:bg-gray-700 border border-gray-600 rounded px-6 py-3 font-medium transition-colors flex items-center justify-center gap-2"
>
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
Continue with GitHub
</button>
<p className="text-center text-gray-400 text-sm mt-6">
{isSignUp ? 'Already have an account?' : "Don't have an account?"}{' '}
<button
onClick={() => setIsSignUp(!isSignUp)}
className="text-purple-400 hover:text-purple-300"
>
{isSignUp ? 'Sign In' : 'Sign Up'}
</button>
</p>
</div>
</div>
)
}