import { Icon } from "@iconify/react"; import { Form } from "react-router"; import Button from "~/components/Button"; import Card from "~/components/Card"; import Link from "~/components/link"; import Options from "~/components/Options"; import toast from "~/utils/toast"; interface NoAccessProps { linkedUserName?: string; osValue?: string; } export default function NoAccess({ linkedUserName, osValue }: NoAccessProps) { return (
{linkedUserName ? (

✓ Your account is linked to Headscale user {linkedUserName}.

) : undefined} Access your network via Tailscale You don't have dashboard access, but you can still connect to your Headscale network. Install Tailscale on your device to get started. Linux
} >

Click this button to copy the command.{" "} View script source

Windows } >

Requires Windows 10 or later.

macOS } >

Requires macOS Big Sur 11.0 or later.
You can also download Tailscale on the{" "} macOS App Store {"."}

iOS } >

Requires iOS 15 or later.

Android } >

Requires Android 8 or later.

Need dashboard access? Your account is signed in but doesn't have permission to manage the dashboard. Contact an administrator to request access.
); }