diff --git a/packages/design/src/FormManager/FormEdit/formEditStyles.module.css b/packages/design/src/FormManager/FormEdit/formEditStyles.module.css index c9872dc8..8f6c0712 100644 --- a/packages/design/src/FormManager/FormEdit/formEditStyles.module.css +++ b/packages/design/src/FormManager/FormEdit/formEditStyles.module.css @@ -51,6 +51,11 @@ background-color: #fff; } +/* Configure and Publish Pages */ +.progressPage { + min-height: 60vh; +} + @media (max-width: 40em) { .dropdownMenu { bottom: 4.5rem; diff --git a/packages/design/src/FormManager/index.tsx b/packages/design/src/FormManager/index.tsx index 40531c0b..7d964063 100644 --- a/packages/design/src/FormManager/index.tsx +++ b/packages/design/src/FormManager/index.tsx @@ -26,6 +26,7 @@ import AvailableFormList, { UrlForForm, UrlForFormManager, } from '../AvailableFormList'; +import styles from './FormEdit/formEditStyles.module.css'; export type FormManagerContext = { baseUrl: `${string}/`; @@ -183,7 +184,24 @@ export default function FormManager({ context }: FormManagerProps) { next={AppRoutes.Publish.getUrl(formId)} preview={AppRoutes.Preview.getUrl(formId)} > - Publish +
+
+
+

Form Approval and Settings

+

Work in Progress

+

On this page, you can add additional settings to your form, gather and review feedback by colleagues and share the form for supervisor review.

+

Unprioritized Upcoming Feature List: +

+
    +
  • Commenting tools for colleagues
  • +
  • Commenting and review tools for supervisors
  • +
  • Tracking form edit changes by multiple form builders
  • +
  • Form branding tools
  • +
  • Guided process to include additional forms in the form application
  • +
+
+
+
); @@ -213,7 +231,20 @@ export default function FormManager({ context }: FormManagerProps) { close={AppRoutes.MyForms.getUrl()} preview={AppRoutes.Preview.getUrl(formId)} > - Publish +
+
+
+

Publish

+

On this page, you can review the pdf preview of your created form and publish it. The exact contents of this page are subject to change following additional user research.

+

Unprioritized Upcoming Feature List: +

+
    +
  • A scrollable pdf view
  • +
  • A publish option for the page
  • +
+
+
+
);