53 lines
1.8 KiB
TypeScript
53 lines
1.8 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: "Log In",
|
|
description: "Log in to your Higgy's Android Boxes account to access video tutorials and support.",
|
|
}
|
|
|
|
export default function LoginPage() {
|
|
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">Welcome back</CardTitle>
|
|
<CardDescription>
|
|
Enter your credentials to access your video tutorials
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<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>
|
|
<Button className="w-full bg-[#8BC34A] hover:bg-[#7CB342] text-white">
|
|
Log In
|
|
</Button>
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
Don't have an account?{" "}
|
|
<Link
|
|
href="/signup"
|
|
className="text-[#8BC34A] hover:underline font-medium"
|
|
>
|
|
Sign up
|
|
</Link>
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|