123
This commit is contained in:
29
apps/web/src/app/(auth)/forgot-password/page.tsx
Normal file
29
apps/web/src/app/(auth)/forgot-password/page.tsx
Normal file
@ -0,0 +1,29 @@
|
||||
'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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user