higgys-android-website/app/signup/page.tsx

65 lines
2.2 KiB
TypeScript

import type { Metadata } from "next"
import Link from "next/link"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
export const metadata: Metadata = {
title: "Sign Up",
description: "Create your Higgy's Android Boxes account to access exclusive video tutorials and support.",
}
export default function SignupPage() {
return (
<div className="min-h-screen flex items-center justify-center py-12 px-4">
<Card className="w-full max-w-md">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">Create an account</CardTitle>
<CardDescription>
Sign up to access exclusive video tutorials and support
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Full Name</Label>
<Input
id="name"
type="text"
placeholder="Daniel Higginson"
/>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
placeholder="you@example.com"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input id="password" type="password" />
</div>
<div className="space-y-2">
<Label htmlFor="confirm-password">Confirm Password</Label>
<Input id="confirm-password" type="password" />
</div>
<Button className="w-full bg-[#8BC34A] hover:bg-[#7CB342] text-white">
Sign Up
</Button>
<p className="text-center text-sm text-muted-foreground">
Already have an account?{" "}
<Link
href="/login"
className="text-[#8BC34A] hover:underline font-medium"
>
Log in
</Link>
</p>
</CardContent>
</Card>
</div>
)
}