Files
course-craft-service/apps/web/src/app/(auth)/forgot-password/page.tsx
2026-02-06 02:55:46 +03:00

30 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import Link from 'next/link';
import { Sparkles } from 'lucide-react';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
export default function ForgotPasswordPage() {
return (
<Card>
<CardHeader className="text-center">
<Link href="/" className="flex items-center justify-center gap-2 mb-4">
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary">
<Sparkles className="h-5 w-5 text-primary-foreground" />
</div>
<span className="text-xl font-bold">CourseCraft</span>
</Link>
<CardTitle>Восстановление пароля</CardTitle>
<CardDescription>
Функция восстановления пароля настраивается через Supabase (Email). Пока используйте вход через поставщика или обратитесь в поддержку.
</CardDescription>
</CardHeader>
<CardContent className="text-center">
<Link href="/login" className="text-primary hover:underline text-sm">
Вернуться к входу
</Link>
</CardContent>
</Card>
);
}