This commit is contained in:
gpt-engineer-app[bot]
2026-01-06 14:46:23 +00:00
parent bebc3a2029
commit 0104839c11
25 changed files with 2955 additions and 79 deletions
+94
View File
@@ -0,0 +1,94 @@
import { useState } from "react";
import { Link } from "react-router-dom";
import { Mail, ArrowLeft, ArrowRight } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function ForgotPasswordPage() {
const [email, setEmail] = useState("");
const [isLoading, setIsLoading] = useState(false);
const [isSubmitted, setIsSubmitted] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setIsLoading(true);
setTimeout(() => {
setIsLoading(false);
setIsSubmitted(true);
}, 1000);
};
if (isSubmitted) {
return (
<div className="auth-card text-center">
<div className="w-16 h-16 rounded-full bg-accent/10 flex items-center justify-center mx-auto mb-6">
<Mail className="w-8 h-8 text-accent" />
</div>
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Check your email
</h1>
<p className="text-muted-foreground mt-2 mb-6">
If an account exists for {email}, you'll receive a password reset link shortly.
</p>
<Link to="/login">
<Button variant="outline" className="w-full">
<ArrowLeft className="w-4 h-4 mr-2" />
Back to sign in
</Button>
</Link>
</div>
);
}
return (
<div className="auth-card">
<div className="text-center mb-8">
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Forgot password?
</h1>
<p className="text-muted-foreground mt-2">
Enter your email and we'll send you a reset link
</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="email"
type="email"
placeholder="you@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Sending..."
) : (
<>
Send reset link
<ArrowRight className="w-4 h-4 ml-2" />
</>
)}
</Button>
</form>
<p className="text-center text-sm text-muted-foreground mt-6">
<Link to="/login" className="text-accent hover:underline font-medium inline-flex items-center">
<ArrowLeft className="w-4 h-4 mr-1" />
Back to sign in
</Link>
</p>
</div>
);
}
+136
View File
@@ -0,0 +1,136 @@
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { User, Lock, Upload, ArrowRight, Building2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
export default function InviteAcceptPage() {
const navigate = useNavigate();
const [name, setName] = useState("");
const [password, setPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
// Mock invite data - will be fetched from URL token
const inviteData = {
email: "invited@example.com",
organization: "Acme Corp",
};
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (password !== confirmPassword) {
return;
}
setIsLoading(true);
setTimeout(() => {
setIsLoading(false);
navigate("/profile");
}, 1000);
};
return (
<div className="auth-card">
<div className="text-center mb-8">
<div className="w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center mx-auto mb-4">
<Building2 className="w-6 h-6 text-primary" />
</div>
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
You're invited!
</h1>
<p className="text-muted-foreground mt-2">
<span className="font-medium text-foreground">{inviteData.organization}</span> has
invited you to join their organization
</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
{/* Avatar upload */}
<div className="flex flex-col items-center mb-6">
<Avatar className="w-20 h-20 mb-3">
<AvatarFallback className="bg-primary text-primary-foreground text-xl">
{name ? name.split(" ").map(n => n[0]).join("").slice(0, 2).toUpperCase() : "?"}
</AvatarFallback>
</Avatar>
<Button type="button" variant="outline" size="sm">
<Upload className="w-4 h-4 mr-2" />
Upload photo
</Button>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
value={inviteData.email}
disabled
className="bg-muted"
/>
</div>
<div className="space-y-2">
<Label htmlFor="name">Full name</Label>
<div className="relative">
<User className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="name"
type="text"
placeholder="John Doe"
value={name}
onChange={(e) => setName(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="password"
type="password"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="pl-10"
required
minLength={8}
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="confirmPassword"
type="password"
placeholder="••••••••"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Joining..."
) : (
<>
Join {inviteData.organization}
<ArrowRight className="w-4 h-4 ml-2" />
</>
)}
</Button>
</form>
</div>
);
}
+151
View File
@@ -0,0 +1,151 @@
import { useState } from "react";
import { Link, useNavigate } from "react-router-dom";
import { Mail, Lock, ArrowRight, Fingerprint } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Separator } from "@/components/ui/separator";
export default function LoginPage() {
const navigate = useNavigate();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setIsLoading(true);
// Mock login - will be replaced with actual auth
setTimeout(() => {
setIsLoading(false);
navigate("/profile");
}, 1000);
};
return (
<div className="auth-card">
<div className="text-center mb-8">
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Welcome back
</h1>
<p className="text-muted-foreground mt-2">
Sign in to your account to continue
</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="email"
type="email"
placeholder="you@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label htmlFor="password">Password</Label>
<Link
to="/forgot-password"
className="text-sm text-accent hover:underline"
>
Forgot password?
</Link>
</div>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="password"
type="password"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Signing in..."
) : (
<>
Sign in
<ArrowRight className="w-4 h-4 ml-2" />
</>
)}
</Button>
</form>
<div className="relative my-6">
<Separator />
<span className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 bg-card px-3 text-xs text-muted-foreground">
or continue with
</span>
</div>
{/* Alternative login methods */}
<div className="space-y-3">
<Button variant="outline" className="w-full" type="button">
<Fingerprint className="w-4 h-4 mr-2" />
Sign in with Passkey
</Button>
<div className="grid grid-cols-3 gap-3">
<Button variant="outline" className="w-full" type="button">
<svg className="w-4 h-4" viewBox="0 0 24 24">
<path
fill="currentColor"
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"
/>
<path
fill="currentColor"
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"
/>
<path
fill="currentColor"
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"
/>
<path
fill="currentColor"
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"
/>
</svg>
</Button>
<Button variant="outline" className="w-full" type="button">
<svg className="w-4 h-4" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M12 2C6.477 2 2 6.477 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0012 2z"
/>
</svg>
</Button>
<Button variant="outline" className="w-full" type="button">
<svg className="w-4 h-4" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M21.35 11.1h-9.17v2.73h6.51c-.33 3.81-3.5 5.44-6.5 5.44C8.36 19.27 5 16.25 5 12c0-4.1 3.2-7.27 7.2-7.27 3.09 0 4.9 1.97 4.9 1.97L19 4.72S16.56 2 12.1 2C6.42 2 2.03 6.8 2.03 12c0 5.05 4.13 10 10.22 10 5.35 0 9.25-3.67 9.25-9.09 0-1.15-.15-1.81-.15-1.81z"
/>
</svg>
</Button>
</div>
</div>
<p className="text-center text-sm text-muted-foreground mt-6">
Don't have an account?{" "}
<Link to="/register" className="text-accent hover:underline font-medium">
Create one
</Link>
</p>
</div>
);
}
+109
View File
@@ -0,0 +1,109 @@
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { CheckCircle, XCircle, Shield, User, Mail, Building2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";
import { Separator } from "@/components/ui/separator";
export default function OIDCConsentPage() {
const navigate = useNavigate();
const [isLoading, setIsLoading] = useState(false);
// Mock OIDC client data - will be fetched from auth flow
const clientData = {
name: "GitLab",
logo: null,
redirectUri: "https://gitlab.example.com/callback",
scopes: [
{ id: "openid", name: "OpenID", description: "Verify your identity" },
{ id: "profile", name: "Profile", description: "Access your name and profile picture" },
{ id: "email", name: "Email", description: "Access your email address" },
],
};
const handleAllow = () => {
setIsLoading(true);
// Mock consent - will redirect to client callback
setTimeout(() => {
setIsLoading(false);
// In real implementation: redirect to redirectUri with auth code
}, 500);
};
const handleDeny = () => {
navigate(-1);
};
return (
<div className="auth-card">
<div className="text-center mb-6">
<div className="w-14 h-14 rounded-xl bg-primary/10 flex items-center justify-center mx-auto mb-4">
<Shield className="w-7 h-7 text-primary" />
</div>
<h1 className="text-xl font-semibold text-foreground tracking-tight">
Authorize {clientData.name}
</h1>
<p className="text-sm text-muted-foreground mt-2">
This application wants to access your account
</p>
</div>
<Card className="p-4 bg-secondary/30 border-0 mb-6">
<p className="text-sm text-foreground font-medium mb-3">
{clientData.name} is requesting access to:
</p>
<ul className="space-y-3">
{clientData.scopes.map((scope) => (
<li key={scope.id} className="flex items-start gap-3">
<div className="w-8 h-8 rounded-lg bg-card flex items-center justify-center flex-shrink-0">
{scope.id === "openid" && <Shield className="w-4 h-4 text-accent" />}
{scope.id === "profile" && <User className="w-4 h-4 text-accent" />}
{scope.id === "email" && <Mail className="w-4 h-4 text-accent" />}
</div>
<div>
<p className="text-sm font-medium text-foreground">{scope.name}</p>
<p className="text-xs text-muted-foreground">{scope.description}</p>
</div>
</li>
))}
</ul>
</Card>
<div className="flex items-center gap-2 text-xs text-muted-foreground mb-6">
<Building2 className="w-4 h-4" />
<span>
Redirecting to: <span className="font-mono text-foreground">{clientData.redirectUri}</span>
</span>
</div>
<Separator className="mb-6" />
<div className="flex gap-3">
<Button
variant="outline"
onClick={handleDeny}
className="flex-1"
disabled={isLoading}
>
<XCircle className="w-4 h-4 mr-2" />
Deny
</Button>
<Button
onClick={handleAllow}
className="flex-1"
disabled={isLoading}
>
<CheckCircle className="w-4 h-4 mr-2" />
{isLoading ? "Authorizing..." : "Allow"}
</Button>
</div>
<p className="text-center text-xs text-muted-foreground mt-4">
You can revoke this access anytime from your{" "}
<a href="/linked-accounts" className="text-accent hover:underline">
linked accounts
</a>
</p>
</div>
);
}
+49
View File
@@ -0,0 +1,49 @@
import { AlertTriangle, ArrowLeft, Home } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Link } from "react-router-dom";
export default function OIDCErrorPage() {
// Mock error data - will be parsed from URL params
const errorData = {
error: "invalid_request",
description: "The request was missing a required parameter or was otherwise malformed.",
clientName: "Unknown Application",
};
return (
<div className="auth-card text-center">
<div className="w-16 h-16 rounded-full bg-destructive/10 flex items-center justify-center mx-auto mb-6">
<AlertTriangle className="w-8 h-8 text-destructive" />
</div>
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Authentication Error
</h1>
<p className="text-muted-foreground mt-2 mb-4">
There was a problem with the authentication request.
</p>
<div className="bg-destructive/5 border border-destructive/20 rounded-lg p-4 mb-6 text-left">
<p className="text-sm font-medium text-foreground mb-1">
Error: <code className="text-destructive">{errorData.error}</code>
</p>
<p className="text-sm text-muted-foreground">
{errorData.description}
</p>
</div>
<div className="space-y-3">
<Button variant="outline" className="w-full" onClick={() => window.history.back()}>
<ArrowLeft className="w-4 h-4 mr-2" />
Go back
</Button>
<Link to="/">
<Button variant="ghost" className="w-full">
<Home className="w-4 h-4 mr-2" />
Return to home
</Button>
</Link>
</div>
</div>
);
}
+140
View File
@@ -0,0 +1,140 @@
import { useState } from "react";
import { Link, useNavigate } from "react-router-dom";
import { Mail, Lock, User, ArrowRight } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function RegisterPage() {
const navigate = useNavigate();
const [name, setName] = useState("");
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (password !== confirmPassword) {
return;
}
setIsLoading(true);
// Mock registration - will be replaced with actual auth
setTimeout(() => {
setIsLoading(false);
navigate("/verify-email");
}, 1000);
};
return (
<div className="auth-card">
<div className="text-center mb-8">
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Create your account
</h1>
<p className="text-muted-foreground mt-2">
Get started with Authy2 in seconds
</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Full name</Label>
<div className="relative">
<User className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="name"
type="text"
placeholder="John Doe"
value={name}
onChange={(e) => setName(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="email"
type="email"
placeholder="you@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="password"
type="password"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="pl-10"
required
minLength={8}
/>
</div>
<p className="text-xs text-muted-foreground">
Must be at least 8 characters
</p>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="confirmPassword"
type="password"
placeholder="••••••••"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Creating account..."
) : (
<>
Create account
<ArrowRight className="w-4 h-4 ml-2" />
</>
)}
</Button>
</form>
<p className="text-center text-sm text-muted-foreground mt-6">
Already have an account?{" "}
<Link to="/login" className="text-accent hover:underline font-medium">
Sign in
</Link>
</p>
<p className="text-center text-xs text-muted-foreground mt-4">
By creating an account, you agree to our{" "}
<Link to="/terms" className="underline">
Terms of Service
</Link>{" "}
and{" "}
<Link to="/privacy" className="underline">
Privacy Policy
</Link>
</p>
</div>
);
}
+110
View File
@@ -0,0 +1,110 @@
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { Lock, ArrowRight, CheckCircle } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function ResetPasswordPage() {
const navigate = useNavigate();
const [password, setPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const [isSuccess, setIsSuccess] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (password !== confirmPassword) {
return;
}
setIsLoading(true);
setTimeout(() => {
setIsLoading(false);
setIsSuccess(true);
}, 1000);
};
if (isSuccess) {
return (
<div className="auth-card text-center">
<div className="w-16 h-16 rounded-full bg-success/10 flex items-center justify-center mx-auto mb-6">
<CheckCircle className="w-8 h-8 text-success" />
</div>
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Password reset successful
</h1>
<p className="text-muted-foreground mt-2 mb-6">
Your password has been updated. You can now sign in with your new password.
</p>
<Button onClick={() => navigate("/login")} className="w-full">
Sign in
<ArrowRight className="w-4 h-4 ml-2" />
</Button>
</div>
);
}
return (
<div className="auth-card">
<div className="text-center mb-8">
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Reset your password
</h1>
<p className="text-muted-foreground mt-2">
Enter a new password for your account
</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="password">New password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="password"
type="password"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="pl-10"
required
minLength={8}
/>
</div>
<p className="text-xs text-muted-foreground">
Must be at least 8 characters
</p>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm new password</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
<Input
id="confirmPassword"
type="password"
placeholder="••••••••"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
className="pl-10"
required
/>
</div>
</div>
<Button type="submit" className="w-full" disabled={isLoading}>
{isLoading ? (
"Resetting..."
) : (
<>
Reset password
<ArrowRight className="w-4 h-4 ml-2" />
</>
)}
</Button>
</form>
</div>
);
}
+34
View File
@@ -0,0 +1,34 @@
import { Mail, RefreshCw } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Link } from "react-router-dom";
export default function VerifyEmailPage() {
return (
<div className="auth-card text-center">
<div className="w-16 h-16 rounded-full bg-accent/10 flex items-center justify-center mx-auto mb-6">
<Mail className="w-8 h-8 text-accent" />
</div>
<h1 className="text-2xl font-semibold text-foreground tracking-tight">
Check your email
</h1>
<p className="text-muted-foreground mt-2 mb-6">
We've sent a verification link to your email address. Click the link to verify your account.
</p>
<div className="space-y-3">
<Button variant="outline" className="w-full">
<RefreshCw className="w-4 h-4 mr-2" />
Resend verification email
</Button>
</div>
<p className="text-sm text-muted-foreground mt-6">
Wrong email?{" "}
<Link to="/register" className="text-accent hover:underline font-medium">
Go back
</Link>
</p>
</div>
);
}