diff --git a/apps/web/pages/documents/[id]/signed.tsx b/apps/web/pages/documents/[id]/signed.tsx index 95183cd9f..6950dd1c8 100644 --- a/apps/web/pages/documents/[id]/signed.tsx +++ b/apps/web/pages/documents/[id]/signed.tsx @@ -2,6 +2,9 @@ import prisma from "@documenso/prisma"; import Head from "next/head"; import { NextPageWithLayout } from "../../_app"; import { ReadStatus } from "@prisma/client"; +import { CheckBadgeIcon } from "@heroicons/react/24/outline"; +import { Button } from "@documenso/ui"; +import Link from "next/link"; const SignPage: NextPageWithLayout = (props: any) => { return ( @@ -9,7 +12,35 @@ const SignPage: NextPageWithLayout = (props: any) => { Sign | Documenso - You signed,thanks for playing. +
+ +

+ It's done! +

+

+ You signed "{props.document.title}" +

+

+ You will be notfied when all recipients have signed. +

+
+
+
+ +
+

+ Want to send slick signing links like this one?{" "} + + Create your own Account + +

); };