All checks were successful
Docker Build and Push / build-and-push (push) Successful in 15m8s
158 lines
6.5 KiB
TypeScript
158 lines
6.5 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import Link from "next/link"
|
|
import { createAuthClient } from "better-auth/client";
|
|
|
|
const authClient = createAuthClient();
|
|
|
|
export default function LoginPage() {
|
|
const [isLoading, setIsLoading] = useState(false)
|
|
|
|
const handleGoogleSignIn = async () => {
|
|
setIsLoading(true)
|
|
try {
|
|
await authClient.signIn.social({
|
|
provider: "google",
|
|
});
|
|
|
|
console.log("Google sign-in clicked")
|
|
} catch (error) {
|
|
console.error("Sign-in error:", error)
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="flex min-h-screen flex-col bg-gray-950 text-white">
|
|
<main className="flex-1 flex flex-col items-center justify-center px-4 py-8">
|
|
<div className="w-full max-w-md mx-auto">
|
|
<div className="text-center mb-8">
|
|
<Link href="/" className="inline-block">
|
|
<h1 className="text-3xl font-bold tracking-tight mb-2">
|
|
<span className="text-emerald-400">tunnl</span>.live
|
|
</h1>
|
|
</Link>
|
|
<p className="text-gray-400">Sign in to manage your tunnels</p>
|
|
</div>
|
|
|
|
<div className="bg-gray-900 rounded-lg border border-gray-800 p-8">
|
|
<div className="text-center mb-6">
|
|
<h2 className="text-2xl font-bold mb-2">Welcome Back</h2>
|
|
<p className="text-gray-400">Sign in to access your tunnel dashboard</p>
|
|
</div>
|
|
|
|
<button
|
|
onClick={handleGoogleSignIn}
|
|
disabled={isLoading}
|
|
className="w-full flex items-center justify-center gap-3 bg-white hover:bg-gray-100 text-gray-900 font-medium py-3 px-4 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed border border-gray-300"
|
|
>
|
|
{isLoading ? (
|
|
<div className="animate-spin rounded-full h-5 w-5 border-2 border-gray-900 border-t-transparent"></div>
|
|
) : (
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"
|
|
fill="#4285F4"
|
|
/>
|
|
<path
|
|
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
fill="#34A853"
|
|
/>
|
|
<path
|
|
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"
|
|
fill="#FBBC05"
|
|
/>
|
|
<path
|
|
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
fill="#EA4335"
|
|
/>
|
|
</svg>
|
|
)}
|
|
{isLoading ? "Signing in..." : "Continue with Google"}
|
|
</button>
|
|
|
|
<div className="relative my-6">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<div className="w-full border-t border-gray-700"></div>
|
|
</div>
|
|
<div className="relative flex justify-center text-sm">
|
|
<span className="px-2 bg-gray-900 text-gray-400">or</span>
|
|
</div>
|
|
</div>
|
|
|
|
<Link
|
|
href="/"
|
|
className="w-full flex items-center justify-center gap-2 bg-gray-800 hover:bg-gray-700 text-white font-medium py-3 px-4 rounded-lg transition-colors border border-gray-700"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
|
|
<polyline points="15 3 21 3 21 9" />
|
|
<line x1="10" x2="21" y1="14" y2="3" />
|
|
</svg>
|
|
Continue as Guest
|
|
</Link>
|
|
|
|
<div className="mt-6 pt-6 border-t border-gray-800">
|
|
<p className="text-sm text-gray-400 mb-3">Benefits of signing in:</p>
|
|
<ul className="space-y-2 text-sm text-gray-300">
|
|
<li className="flex items-center gap-2">
|
|
<div className="w-1.5 h-1.5 bg-emerald-400 rounded-full"></div>
|
|
Save and manage your tunnel configurations
|
|
</li>
|
|
<li className="flex items-center gap-2">
|
|
<div className="w-1.5 h-1.5 bg-emerald-400 rounded-full"></div>
|
|
View tunnel usage statistics and history
|
|
</li>
|
|
<li className="flex items-center gap-2">
|
|
<div className="w-1.5 h-1.5 bg-emerald-400 rounded-full"></div>
|
|
Access to premium features and priority support
|
|
</li>
|
|
<li className="flex items-center gap-2">
|
|
<div className="w-1.5 h-1.5 bg-emerald-400 rounded-full"></div>
|
|
Sync settings across multiple devices
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="text-center mt-6 space-y-2">
|
|
<p className="text-sm text-gray-400">
|
|
By signing in, you agree to our{" "}
|
|
<Link href="/terms" className="text-emerald-400 hover:text-emerald-300 underline">
|
|
Terms of Service
|
|
</Link>{" "}
|
|
and{" "}
|
|
<Link href="/privacy" className="text-emerald-400 hover:text-emerald-300 underline">
|
|
Privacy Policy
|
|
</Link>
|
|
</p>
|
|
<p className="text-xs text-gray-500">
|
|
Need help?{" "}
|
|
<Link href="/support" className="text-emerald-400 hover:text-emerald-300 underline">
|
|
Contact Support
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<div className="fixed inset-0 -z-10 overflow-hidden">
|
|
<div className="absolute -top-40 -right-32 w-80 h-80 bg-emerald-500/10 rounded-full blur-3xl"></div>
|
|
<div className="absolute -bottom-40 -left-32 w-80 h-80 bg-emerald-500/5 rounded-full blur-3xl"></div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|