30 lines
955 B
TypeScript
30 lines
955 B
TypeScript
import { InviteUserForm } from "@/components/admin/invite-user-form"
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
|
|
|
export const metadata = {
|
|
title: "Felhasználó meghívása - Admin - FABRIKA NABYTOK",
|
|
}
|
|
|
|
export default function InviteUserPage() {
|
|
return (
|
|
<div className="max-w-2xl mx-auto space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold">Felhasználó meghívása</h1>
|
|
<p className="text-muted-foreground mt-2">Új felhasználó meghívása a platformra</p>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Meghívó részletei</CardTitle>
|
|
<CardDescription>
|
|
Add meg az új felhasználó email címét és szerepkörét. A felhasználó egy meghívó linket fog kapni.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<InviteUserForm />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|