import Button from "~/components/button"; import Dialog, { DialogPanel } from "~/components/dialog"; import Input from "~/components/input"; import Text from "~/components/text"; import Title from "~/components/title"; interface CreateUserProps { isOidc?: boolean; isDisabled?: boolean; } export default function CreateUser({ isOidc, isDisabled }: CreateUserProps) { return ( Create a Headscale user This creates a new user in Headscale. The user will appear in the “Unlinked Headscale Users” section until they sign in {isOidc ? " through your OIDC provider" : ""} and are automatically linked to a Headplane account.
); }