mirror of
https://github.com/tale/headplane.git
synced 2026-08-27 15:37:04 +00:00
27 lines
867 B
TypeScript
27 lines
867 B
TypeScript
import Dialog, { DialogPanel } from "~/components/dialog";
|
|
import Text from "~/components/text";
|
|
import Title from "~/components/title";
|
|
import type { Machine } from "~/types";
|
|
|
|
interface ExpireProps {
|
|
machine: Machine;
|
|
isOpen: boolean;
|
|
setIsOpen: (isOpen: boolean) => void;
|
|
}
|
|
|
|
export default function Expire({ machine, isOpen, setIsOpen }: ExpireProps) {
|
|
return (
|
|
<Dialog isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogPanel variant="destructive">
|
|
<Title>Expire {machine.givenName}</Title>
|
|
<Text>
|
|
This will disconnect the machine from your Tailnet. In order to reconnect, you will need
|
|
to re-authenticate from the device.
|
|
</Text>
|
|
<input name="action_id" type="hidden" value="expire" />
|
|
<input name="node_id" type="hidden" value={machine.id} />
|
|
</DialogPanel>
|
|
</Dialog>
|
|
);
|
|
}
|