├── .github ├── DISCUSSION_TEMPLATE │ └── rfc.yml ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── adr_pr_template.md │ └── research_pr_template.md └── workflows │ └── trello_poster.yml ├── .gitignore ├── ADR ├── ADR000-record-architecture-decisions.md ├── ADR001-implement-continuous-deployment.md ├── ADR002-use-govuk-notify.md ├── ADR003-use-govuk-signon.md ├── ADR004-store-form-schemas-in-an-api.md ├── ADR005-use-shared-runner.md ├── ADR006-use-rust-for-api.md ├── ADR007-store-form-text-data-as-objects.md ├── ADR008-page-ordering-defined-by-pointers.md ├── ADR009-replatforming-to-ECS.md ├── ADR010-rds-configuration.md ├── ADR011-deployment-pipelines.md ├── ADR012-use-rails-api-for-api.md ├── ADR013-use-paper-trail-gem-for-auditing-and-record-backups.md ├── ADR014-add-conditions-to-pages.md ├── ADR015-idp-authentication.md ├── ADR016-use-vite-rails-for-frontend-build.md ├── ADR017-use-paper-trail-for-draft-live-or-some-other-solution.md ├── ADR018-use-govuk-organisation-api.md ├── ADR019-use-amazon-ses.md ├── ADR020-e2e-tests-get-own-repo.md ├── ADR021-use-auth0.md ├── ADR022-use-postgresql-for-form-creation-in-form-admin.md ├── ADR023-use-uid-in-urls.md ├── ADR024-store-allowed-domain-list-as-file-in-forms-deploy.md ├── ADR025-remove-papertrail.md ├── ADR025-use-aasm-to-manage-form-state.md ├── ADR026-paramaterise-common-terraform-roots.md ├── ADR027-scheduled-smoke-tests.md ├── ADR028-use-notify-for-users.md ├── ADR029-use-shield-advanced.md ├── ADR030-use-aws-lambda-to-run-glue-code.md ├── ADR031-use-pagerduty.md ├── ADR032-use-statuspage.md ├── ADR033-swapping-jest-vitest.md ├── ADR034-api-v2-for-forms.md ├── ADR035-offer-amazon-s3-form-submissions.md ├── ADR036-automate-patch-version-bumps.md ├── ADR037-implement-review-apps.md ├── ADR038-add-psql-database-and-solid-queue-to-forms-runner.md ├── ADR039-add-aurora-for-runner.md ├── ADR040-make-container-image-tags-mutable.md ├── ADR041-grant-review-apps-workflow-pull-request-write-access.md ├── ADR041-use-activerecord-encryption.md ├── ADR042-use-amazon-s3-file-uploads.md ├── ADR043-use-mobility-with-column-strategy.md ├── ADR044-translate-api-response-at-request-time.md ├── ADR045-remove-forms-api.md ├── ADR046-use-mobility-table-backend-strategy.md ├── ADRXXX-architecture-decision-record-template.md └── README.md ├── LICENCE ├── README.md ├── decision-record ├── DR000-use-github-and-the-adr-process.md ├── DR002-no-charges-for-lower-volume-services.md ├── DR003-enough-common-features.md ├── DR004-our-own-designer.md ├── DR005-choosing-insolvency-service-as-first-partner.MD ├── DR006-epics-focus-on-specific-forms.MD ├── DR007-form-is-live-first-then-add-draft.MD ├── DR008-no-charges-at-all-for-using-GOV.UK-Forms.md ├── DR009-who-can-access-authentication.md ├── DRXXX-decision-record-template.md └── README.md ├── design ├── README.md ├── features │ ├── README.md │ ├── confirmation-email-for-form-fillers │ │ ├── README.md │ │ ├── screenshots-v2 │ │ │ ├── README.md │ │ │ ├── confirmation-email-mural-mockup-notify-template.png │ │ │ ├── provide-contact-details-for-support-page-updated-content.png │ │ │ └── what-happens-next-page-new-page-title-and-updated-content.png │ │ ├── version-1.md │ │ └── version-2.md │ ├── detailed-guidance │ │ ├── README.md │ │ ├── screenshots-v2.md │ │ ├── screenshots-v2 │ │ │ ├── README.md │ │ │ ├── add-guidance-help-text.png │ │ │ ├── give-your-page-a-heading-on-add-guidance-page.png │ │ │ ├── hint-text-guidance-text-on-edit-question-page.png │ │ │ └── updated-formatting-markdown-help-text.png │ │ ├── version-1.md │ │ └── version-2.md │ ├── early-access │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── 001.Editor-notification-banner.png │ │ │ ├── 002.Get-started.png │ │ │ ├── 003.Mou.png │ │ │ ├── 004.Requirements-page.png │ │ │ ├── 005.What-happens-next.png │ │ │ ├── 006.Agreeing-to-mou.png │ │ │ ├── 007.Trial-notification-banner.png │ │ │ ├── forms-product-site-homepage-call-to-action.png │ │ │ └── screenshots │ │ └── version-1.md │ ├── editing-drafts │ │ ├── README.md │ │ └── version-1.md │ ├── file-upload │ │ ├── README.md │ │ └── screenshots-released-version │ │ │ ├── 000-create-file-upload-question-answer-type.png │ │ │ ├── 001-edit-file-upload-question.png │ │ │ ├── 002-upload-a-file-pattern-diagram.png │ │ │ ├── 003-upload-a-file.png │ │ │ ├── 004-check-your-uploaded-file.png │ │ │ ├── 005-confirm-removing-the-file.png │ │ │ ├── 006-file-removed-upload-new-file.png │ │ │ ├── 007-check-your-answers-file-upload.png │ │ │ ├── 008-check-your-answers-file-upload-page-heading.png │ │ │ └── 009-email-submitted-form-responses-with-attachments.png │ ├── form-management │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── 001-your-groups.png │ │ │ ├── 002-active-group.png │ │ │ ├── 003-move-form-to-a-different-group-11-to-30-groups.png │ │ │ ├── 003-move-form-to-a-different-group-31+-groups.png │ │ │ ├── 003-move-form-to-a-different-group-error.png │ │ │ ├── 003-move-form-to-a-different-group-no-active-groups.png │ │ │ ├── 003-move-form-to-a-different-group-no-groups.png │ │ │ ├── 003-move-form-to-a-different-group.png │ │ │ ├── 004-active-group-success-form-moved.png │ │ │ ├── 101-form-moved-groups-email-group-admin-editors.png │ │ │ ├── 102-form-moved-groups-email-org-admins.png │ │ │ ├── OLD-VERSION-003-move-form-to-a-different-group-no-groups.png │ │ │ ├── OLD-VERSION-003-move-form-to-a-different-group.png │ │ │ ├── OLD-VERSION-101-form-moved-groups-email-group-admin-editors.png │ │ │ ├── OLD-VERSION-102-form-moved-groups-email-org-admins.png │ │ │ └── README.md │ │ └── version-1.md │ ├── form-metrics │ │ ├── README.md │ │ └── version-1.md │ ├── live-draft │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── 001.Create-a-form-tasklist.png │ │ │ ├── 002.Add-and-edit-questions.png │ │ │ ├── 003.Live-form-view-only.png │ │ │ ├── 004.Your-questions-view-only.png │ │ │ ├── 005.Landing-page-forms-list.png │ │ │ ├── 006.Edit-form-in-draft-tasklist-in-progress.png │ │ │ ├── 007.Edit-form-in-draft-tasklist-completed.png │ │ │ ├── 008.Preview-draft-form.png │ │ │ ├── 009.Make-changes-live.png │ │ │ ├── 010.Changes-are-live-confirmation.png │ │ │ ├── 011.Preview-live-form.png │ │ │ └── 012.Live-form-form-filler-view.png │ │ └── version-1.md │ ├── long-list-autocomplete │ │ ├── README.md │ │ ├── diagrams.md │ │ └── screenshots-v1 │ │ │ ├── 000-what-kind-of-answer-do-you-need.png │ │ │ ├── 001-what-is-your-question.png │ │ │ ├── 002-how-many-options-can-people-select.png │ │ │ ├── 003-create-a-list-of-options-select-one-only-single-fields.png │ │ │ ├── 004-create-a-list-of-options-select-many-single-fields.png │ │ │ ├── 005-create-a-list-of-options-select-many-single-fields.png │ │ │ ├── 006-create-a-list-of-options-select-one-only-text-box.png │ │ │ ├── 007-change-seletion-type-warnings.png │ │ │ ├── 008-change-selection-type-reduce-options-list-edit-options.png │ │ │ ├── 009-change-selection-type-reduce-option-list-on-edit-question.png │ │ │ ├── 010-edit-question-options-list.png │ │ │ └── README.md │ ├── payment-links │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── 001-create-a-form-optional-task.png │ │ │ ├── 002-add-a-link-to-a-payment-page-on-govuk-pay-error-summary.png │ │ │ ├── 002-add-a-link-to-a-payment-page-on-govuk-pay-error.png │ │ │ ├── 002-add-a-link-to-a-payment-page-on-govuk-pay.png │ │ │ ├── 003-create-a-form-added-payment-link.png │ │ │ ├── 003-success-notification.png │ │ │ ├── 004-create-a-form-return.png │ │ │ ├── 1000-preview-confirmation-still-need-to-pay.png │ │ │ ├── 1001-preview-journey.png │ │ │ ├── 1002-preview-test-email-with-payment-link.png │ │ │ └── README.md │ │ └── version-1.md │ ├── previewing-a-question │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── 001-Helping users preview their form Mural design.png │ │ │ ├── 002-check-your-question-simple-answer-type.png │ │ │ ├── 002-preview-question-simple-answer-type.png │ │ │ ├── 003-check-your-question-complex-answer-type.png │ │ │ ├── 003-preview-question-complex-answer-type.png │ │ │ └── README.md │ │ └── version-1.md │ ├── research-email-consent │ │ ├── README.md │ │ ├── screenshots-v1 │ │ │ ├── README.md │ │ │ ├── consent for email about user research journey.png │ │ │ ├── research-email-consent-page.png │ │ │ └── users-interested-in-research-report.png │ │ └── version-1.md │ ├── routing │ │ ├── README.md │ │ ├── screenshots-v3 │ │ │ ├── 001-create-a-form-question-route-created.png │ │ │ ├── 001-create-a-form.png │ │ │ ├── 002-add-route-from-question.png │ │ │ ├── 003-edit-route-1-is-answered-as.png │ │ │ ├── 003-edit-route-1-take-the-person-to.png │ │ │ ├── 003-edit-route-1.png │ │ │ ├── 004-edit-exit-page.png │ │ │ ├── 005-edit-question-2s-route-branch.png │ │ │ ├── 005-edit-question2s-route.png │ │ │ ├── 006-set-questions-to-skip-after-question.png │ │ │ ├── 006-set-questions-to-skip-take-the-person-to.png │ │ │ ├── 006-set-questions-to-skip.png │ │ │ └── README.md │ │ ├── screenshots-v4 │ │ │ ├── README.md │ │ │ ├── add-a-route-from-a-question.png │ │ │ ├── add-and-edit-your-questions-page-with-routes.png │ │ │ ├── question-xs-routes-with-1-route.png │ │ │ ├── questions-xs-routes-with-2-routes.png │ │ │ ├── set-questions-to-skip-page.png │ │ │ └── your-questions-page-for-a-live-form-with-routes.png │ │ ├── screenshots-v5 │ │ │ ├── 001-add-a-route-from-a-question-error.png │ │ │ ├── 001-add-a-route-from-a-question-withOptions.png │ │ │ ├── 002-add-a-route-from-a-question-YouCannotAddARouteYet.png │ │ │ ├── 002-add-a-route-from-a-question-YouHaveNoMoreQuestionsToAddARouteFrom.png │ │ │ ├── 003-question-xs-routes-bothRoutesSet.png │ │ │ ├── 003-question-xs-routes-route1Set.png │ │ │ ├── 004-are-you-sure-you-want-to-delete-route-1.png │ │ │ ├── 005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer-error.png │ │ │ ├── 005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer.png │ │ │ ├── 006-add-and-edit-your-questions-listWithRouting.png │ │ │ └── README.md │ │ ├── screenshots-v6 │ │ │ ├── 001-add-a-route-from-a-question-withOptions.png │ │ │ ├── 002-add-route-1-skipPersonTo-Dropdown.png │ │ │ ├── 003-edit-exit-page-disabledJS.png │ │ │ ├── 003-edit-exit-page-markdownEditor.png │ │ │ ├── 004-edit-exit-page-markdownPreviewer.png │ │ │ ├── 005-question-xs-routes-withExitPageRoute.png │ │ │ ├── 006-edit-route-1-withExitPage.png │ │ │ ├── 007-are-you-sure-you-want-to-delete-this-exit-page-error.png │ │ │ ├── 007-are-you-sure-you-want-to-delete-this-exit-page.png │ │ │ ├── 008-add-and-edit-your-questions-withRoutes.png │ │ │ ├── 009-your-questions-live-view-withRoutes.png │ │ │ ├── 010-are-you-sure-you-want-to-delete-this-question-routeStartWarning.png │ │ │ ├── 010-question-x-is-the-start-of-a-route-warning.png │ │ │ ├── 010-question-x-routes-to-an-exit-page-warning.png │ │ │ ├── 011-edit-question-withRoutingConcept.png │ │ │ ├── 104-exit-page-outline.png │ │ │ └── README.md │ │ ├── version-1.md │ │ ├── version-2.md │ │ ├── version-3.md │ │ ├── version-4-branching-iteration-2.md │ │ ├── version-5-branching-iteration-3.md │ │ └── version-6-exit-pages.md │ ├── user-management │ │ ├── editor │ │ │ └── readme.md │ │ ├── group-admin │ │ │ └── readme.md │ │ ├── organisation-admin │ │ │ └── readme.md │ │ ├── readme.md │ │ └── screenshots-v1 │ │ │ ├── editor-screenshots │ │ │ ├── 001-selectorganisation.png │ │ │ ├── 002-enteryourfullname.png │ │ │ ├── 003-yourgroup.png │ │ │ ├── 003-yourgroupswithrequests.png │ │ │ ├── 004-createanewgroup.png │ │ │ ├── 005-membersofthisgroup.png │ │ │ ├── 006-grouppageforatrialgroup.png │ │ │ ├── 007-tasklistpage-livegroup.png │ │ │ ├── 007-tasklistpage-trial.png │ │ │ └── readme.md │ │ │ ├── group-admin-screenshots │ │ │ ├── 001-selectorganisation.png │ │ │ ├── 002-enteryourfullname.png │ │ │ ├── 003-yourgroup.png │ │ │ ├── 003-yourgroupswithrequests.png │ │ │ ├── 004-createanewgroup.png │ │ │ ├── 005-grouplandingpagefortrialgroup.png │ │ │ ├── 005-grouplandingpagefortrialgroup2.png │ │ │ ├── 006-membersofthisgroup.png │ │ │ ├── 007-Upgraderequest.png │ │ │ ├── 007-upgraderequest1.png │ │ │ ├── 008-activegroup.png │ │ │ ├── 009-addaneditororgroupadmin.png │ │ │ ├── 010-tasklistpage-active.png │ │ │ ├── 010-tasklistpage-trial.png │ │ │ └── readme.md │ │ │ └── organisation-admin-screenshots │ │ │ ├── 001.Selectorganisation.png │ │ │ ├── 002-Entername.png │ │ │ ├── 003-Grouplandingpage.png │ │ │ ├── 004-Grouplandingpage.png │ │ │ ├── 005-Membersofthisgroup.png │ │ │ ├── 007-Upgradethisgroup.png │ │ │ ├── 007-Upgradethisgroup2.png │ │ │ ├── 008-Activegroup.png │ │ │ ├── 009-Addmembers.png │ │ │ ├── 010-tasklistpage-active.png │ │ │ ├── 010-tasklistpage-trial.png │ │ │ └── readme.md │ └── welsh-version │ │ ├── README.md │ │ ├── screenshots-v1 │ │ ├── 001 - Account applications - Trial group.png │ │ ├── 002 - Create a form Register for an account - Make Welsh live.png │ │ ├── 002 - Create a form Register for an account.png │ │ ├── 003 - Add a Welsh version of your form Register for an account - no Welsh.png │ │ ├── 003- Add a Welsh version of your form Register for an account - Full English form.png │ │ ├── 003- Add a Welsh version of your form Register for an account - Welsh inputs.png │ │ ├── 1001 - Welsh question page.png │ │ ├── 1002 - Welsh CYA page.png │ │ ├── 1003 - Welsh confirmation page.png │ │ ├── 2000-Account-applications-group-page-showing-Welsh-version.png │ │ └── README.md │ │ └── version-1.md ├── prototype-version-1 │ ├── README.md │ └── screenshots │ │ ├── 001-Form-Home.png │ │ ├── 002-Create-a-form.png │ │ ├── 003-Form-Apply-for-a-juggling-licence.png │ │ ├── 004-Edit-summary-page.png │ │ ├── 005-Edit-confirmation-page.png │ │ ├── 006-Edit-question-1-hint-open.png │ │ ├── 006-Edit-question-1.png │ │ ├── 007-Edit-question-2.png │ │ ├── 008-Form-Apply-for-a-juggling-licence-added-questions.png │ │ ├── 009-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-start-page.png │ │ ├── 102-Preview-question-1.png │ │ ├── 103-Preview-final-question.png │ │ ├── 104-Preview-Check-your-answers.png │ │ └── 105-Preview-Form-submitted.png ├── prototype-version-2 │ ├── README.md │ ├── edit-question │ │ └── README.md │ ├── form-overview │ │ └── README.md │ ├── name-your-form │ │ └── README.md │ └── screenshots │ │ ├── 001-Form-Home.png │ │ ├── 002-Create-a-form.png │ │ ├── 003-Form-Apply-for-a-juggling-licence.png │ │ ├── 004-Edit-question-1.png │ │ ├── 005-Edit-question-1-hint-open.png │ │ ├── 006-Edit-question-2-What-is-your-date-of-birth.png │ │ ├── 007-Form-Apply-for-a-juggling-licence-added-questions.png │ │ ├── 008-Edit-check-your-answers.png │ │ ├── 009-Edit-form-submitted.png │ │ ├── 010-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-start-page.png │ │ ├── 102-Preview-question-1.png │ │ ├── 103-Preview-final-question.png │ │ ├── 104-Preview-Check-your-answers.png │ │ └── 105-Preview-Form-submitted.png ├── prototype-version-3 │ ├── README.md │ ├── form-overview │ │ └── README.md │ └── screenshots │ │ ├── 001-GOV.UK-Forms.png │ │ ├── 002-What-is-the-name-of-your-form.png │ │ ├── 003-Form-overview-Apply-for-a-juggling-licence.png │ │ ├── 004-Edit-question-1.png │ │ ├── 005-Edit-question-1-hint-open.png │ │ ├── 006-Edit-question-2-What-is-your-date-of-birth.png │ │ ├── 007-Form-overview-Apply-for-a-juggling-licence-added-questions.png │ │ ├── 008-Edit-check-your-answers.png │ │ ├── 009-Edit-form-submitted.png │ │ ├── 010-Delete-page.png │ │ ├── 011-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-question-1.png │ │ ├── 102-Preview-final-question.png │ │ ├── 103-Preview-Check-your-answers.png │ │ └── 104-Preview-Form-submitted.png ├── prototype-version-4 │ ├── README.md │ ├── edit-question │ │ └── README.md │ └── screenshots │ │ ├── 001-GOV.UK-Forms-added-forms.png │ │ ├── 001-GOV.UK-Forms.png │ │ ├── 002-What-is-the-name-of-your-form.png │ │ ├── 003-Form-overview-Apply-for-a-juggling-licence.png │ │ ├── 004-Edit-question-1.png │ │ ├── 005-Edit-question-2-What-is-your-date-of-birth.png │ │ ├── 006-Form-overview-Apply-for-a-juggling-licence-added-questions.png │ │ ├── 007-Edit-check-your-answers.png │ │ ├── 008-Edit-form-submitted.png │ │ ├── 009-Delete-page.png │ │ ├── 010-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-question-1.png │ │ ├── 102-Preview-final-question.png │ │ ├── 103-Preview-Check-your-answers.png │ │ └── 104-Preview-Form-submitted.png ├── prototype-version-5 │ ├── README.md │ └── screenshots │ │ ├── .DS_Store │ │ ├── 001-GOV.UK-Forms-added-forms.png │ │ ├── 001-GOV.UK-Forms.png │ │ ├── 002-What-is-the-name-of-your-form.png │ │ ├── 003-Form-overview-Apply-for-a-juggling-licence.png │ │ ├── 004-Edit-question-1.png │ │ ├── 005-Edit-question-2-What-is-your-date-of-birth.png │ │ ├── 006-Form-overview-Apply-for-a-juggling-licence-added-questions.png │ │ ├── 007-Edit-check-your-answers.png │ │ ├── 008-Edit-form-submitted.png │ │ ├── 009-Delete-page.png │ │ ├── 010-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-question-1.png │ │ ├── 102-Preview-final-question.png │ │ ├── 103-Preview-Check-your-answers.png │ │ └── 104-Preview-Form-submitted.png ├── prototype-version-6 │ ├── README.md │ └── screenshots │ │ ├── 001-GOV.UK-Forms-added-forms.png │ │ ├── 001-GOV.UK-Forms.png │ │ ├── 002-What-is-the-name-of-your-form.png │ │ ├── 003-1-Task-list-page-tags-focus-create-your-form.png │ │ ├── 003-Create-a-form-Apply-for-a-juggling-licence.png │ │ ├── 004-Add-and-edit-your-questions.png │ │ ├── 005-Edit-question-1.png │ │ ├── 006-Edit-question-2-What-is-your-date-of-birth.png │ │ ├── 007-Add-and-edit-your-questions-added-questions.png │ │ ├── 008-Delete-page.png │ │ ├── 009-Create-a-form-questions-in-progress.png │ │ ├── 010-Edit-form-summary-page-iframe.png │ │ ├── 010-Edit-form-summary-page.png │ │ ├── 011-Create-a-form-declaration-completed.png │ │ ├── 012-Edit-form-submitted-page-iframe.png │ │ ├── 012-Edit-form-submitted-page.png │ │ ├── 013-Create-a-form-what-happens-next-completed.png │ │ ├── 014-Set-the-email-address-for-completed-forms.png │ │ ├── 015-Confirmation-code-sent.png │ │ ├── 016-Create-a-form-email-address-completed.png │ │ ├── 017-Enter-the-confirmation-code.png │ │ ├── 018-Email-address-confirmed.png │ │ ├── 018-The-confirmation-code-has-expired.png │ │ ├── 019-Create-a-form-email-confirmation-completed.png │ │ ├── 020-Are-you-sure-you-want-to-change-this-email-address.png │ │ ├── 021-Publish-form-Apply-for-a-juggling-licence.png │ │ ├── 101-Preview-question-1.png │ │ ├── 102-Preview-final-question.png │ │ ├── 103-Preview-Check-your-answers-before-submitting-your-form.png │ │ └── 104-Preview-Your-form-has-been-submitted.png ├── prototype-version-7 │ ├── README.MD │ ├── screenshots │ │ ├── 001-form-home-landing.png │ │ ├── 001-form-home-with-form.png │ │ ├── 002-form-create-a-form.png │ │ ├── 003-create-form-create-form-statuses-focus.png │ │ ├── 003-create-form-create-form-statuses.png │ │ ├── 003-create-form-including-email-statuses.png │ │ ├── 003-create-form-make-live-focus.png │ │ ├── 003-create-form-privacy-contact-statuses-focus.png │ │ ├── 003-create-form-set-email-statuses-focus.png │ │ ├── 003-create-form.png │ │ ├── 004-form-index-no-questions.png │ │ ├── 005-delete-question-1.png │ │ ├── 005-edit-page-1.png │ │ ├── 006-edit-page-2-saved.png │ │ ├── 007-form-index-questions.png │ │ ├── 008-create-form-question-in-progress.png │ │ ├── 1001-page-preview-new-tab-1.png │ │ ├── 1002-page-preview-new-tab-3.png │ │ ├── 1003-check-answers-page-preview-new-tab.png │ │ ├── 1004-confirmation-page-preview-new-tab.png │ │ ├── 101-edit-page-check-answers.png │ │ ├── 102-edit-page-check-answers-preview-pane.png │ │ ├── 201-edit-page-confirmation.png │ │ ├── 202-edit-page-confirmation-preview-pane.png │ │ ├── 301-set-completed-forms-email.png │ │ ├── 302-confirmation-code-sent.png │ │ ├── 401-add-confirmation-code.png │ │ ├── 402-confirmation-code-expired.png │ │ ├── 403-email-confirmation.png │ │ ├── 501-provide-link-to-privacy-information.png │ │ ├── 601-provide-support-details.png │ │ ├── 701-make-your-form-live.png │ │ ├── 702-form-is-live.png │ │ ├── 703-create-form-live.png │ │ ├── 801-are-you-sure-you-want-to-edit-live-questions.png │ │ └── 802-form-index-live.png │ └── task-list │ │ └── README.md └── service-maps.md ├── diagrams ├── architecture.md ├── class-diagrams │ ├── README.md │ ├── admin.md │ └── runner.md ├── form-states-and-events.md ├── images │ └── ADR037-architecture-diagram.png └── sequence-diagrams │ ├── README.md │ ├── authentication.md │ ├── changing-a-form.md │ ├── creating-a-form.md │ ├── file-upload.md │ ├── filling-in-a-form.md │ ├── publishing-a-form.md │ ├── review-apps-workflow.md │ └── sending-submission-emails.md ├── engagement └── README.md ├── product └── readme.md └── research ├── 2021-08-22-complex-logic.md ├── 2022-03-15-EPIC-A-TESTING-SECURITY-FEATURES.md ├── 2022-05-03_Basic_Form_Building.md ├── 2022-05-23_Basic_Form_Building.md ├── 2022-06-16_Accessibility_Testing.md ├── 2022-06-28_Basic_Form_Building.md ├── 2022-06-28_The_Review_Process.md ├── 2022-07-04_Form_Processing.md ├── 2022-08-15_Task_list_and_steps_to_make_form_live.md ├── 2022-08-29_Testing_form_processing_efficiency.md ├── 2022-09-12-MCA_Processing.md ├── 2022-10-17_Mental_Model_Of_Document_Based_Form_Creators.md ├── 2022-10-24_Form_Builder_Usability_Testing.md ├── 2022-10-25_Accessibility_Testing.md ├── 2022-11-23-Feedback_on_processing_of_the_first_form.md ├── 2022-12-05-Autofill_feature.md ├── 2022-12-08_File_Upload_And_Optional_Questions_Processing.md ├── 2022-9-12_Testing_form_processing_efficiency.md ├── 2023-01-31_Usability_testing_with_private_beta_partner_form_creator.md ├── 2023-02-06_Testing_options_for_select-from_list_questions.md ├── 2023-03-03_Accessiblity_Testing.md ├── 2023-04-14_Usability_Testing_Draft_Live_Feature.md ├── 2023-06-07_Usability_testing_Simple_routing.md ├── 2023-08-01_Usability_Testing_Form_Completers copy.md ├── 2023-08-09-Usability_Testing_Authentication.md ├── 2023-08-30_Detailed_Guidance_Usability_Testing.md ├── 2023-09-26-Early_Access_Journey.md ├── 2023-09-26-Form_Completers_Accessibility.md ├── 2023-10-11-Data_And_Analytics.md ├── 2023-11-10-Confirmation_Emails.md ├── 2023-11-17-Accessibility_Testing_Detailed_Guidance_and_Routing.md ├── 2023-11-20-Barriers_to_adoption_research.md ├── 2024-04-15_Usability_Testing_User_Management ├── 2024-06-18-concept_testing_add_another_answer.md ├── 2024-08-28-Add-another-answer-round-2.md ├── 2024-10-24_Branching_round_1.md ├── 2024-11-26-Branching-round-2-usability-testing.md ├── 2024-12-23-Support_Model.md ├── 2024-2-21-Add_a_Payment_Link.md ├── 2025-02-03-Branching_feedback_round_1.md ├── 2025-02-17_Branching_feedback_round_2.md ├── 2025-04-01-Branching_usability_testing_round_4.md ├── 2025-05-14-Multiple_branches_concept_testing.md ├── 2025-09-12-Welsh_forms_interviews_findings_Aug_25.md ├── 2025-11-18-Welsh-usability-testing-nov25.md ├── EPIC B MANAGING TWO VERSIONS OF THE SAME FORM.md ├── EPIC-6-HOW TO HELP USERS WHEN THEY CREATE BAD FORMS.md.md └── YYYY-MM-DD-template.md /.github/DISCUSSION_TEMPLATE/rfc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/.github/DISCUSSION_TEMPLATE/rfc.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/adr_pr_template.md: -------------------------------------------------------------------------------- 1 | # This is an ADR PR template 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/research_pr_template.md: -------------------------------------------------------------------------------- 1 | # This is a research PR template 2 | -------------------------------------------------------------------------------- /.github/workflows/trello_poster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/.github/workflows/trello_poster.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /ADR/ADR000-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR000-record-architecture-decisions.md -------------------------------------------------------------------------------- /ADR/ADR001-implement-continuous-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR001-implement-continuous-deployment.md -------------------------------------------------------------------------------- /ADR/ADR002-use-govuk-notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR002-use-govuk-notify.md -------------------------------------------------------------------------------- /ADR/ADR003-use-govuk-signon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR003-use-govuk-signon.md -------------------------------------------------------------------------------- /ADR/ADR004-store-form-schemas-in-an-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR004-store-form-schemas-in-an-api.md -------------------------------------------------------------------------------- /ADR/ADR005-use-shared-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR005-use-shared-runner.md -------------------------------------------------------------------------------- /ADR/ADR006-use-rust-for-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR006-use-rust-for-api.md -------------------------------------------------------------------------------- /ADR/ADR007-store-form-text-data-as-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR007-store-form-text-data-as-objects.md -------------------------------------------------------------------------------- /ADR/ADR008-page-ordering-defined-by-pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR008-page-ordering-defined-by-pointers.md -------------------------------------------------------------------------------- /ADR/ADR009-replatforming-to-ECS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR009-replatforming-to-ECS.md -------------------------------------------------------------------------------- /ADR/ADR010-rds-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR010-rds-configuration.md -------------------------------------------------------------------------------- /ADR/ADR011-deployment-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR011-deployment-pipelines.md -------------------------------------------------------------------------------- /ADR/ADR012-use-rails-api-for-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR012-use-rails-api-for-api.md -------------------------------------------------------------------------------- /ADR/ADR013-use-paper-trail-gem-for-auditing-and-record-backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR013-use-paper-trail-gem-for-auditing-and-record-backups.md -------------------------------------------------------------------------------- /ADR/ADR014-add-conditions-to-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR014-add-conditions-to-pages.md -------------------------------------------------------------------------------- /ADR/ADR015-idp-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR015-idp-authentication.md -------------------------------------------------------------------------------- /ADR/ADR016-use-vite-rails-for-frontend-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR016-use-vite-rails-for-frontend-build.md -------------------------------------------------------------------------------- /ADR/ADR017-use-paper-trail-for-draft-live-or-some-other-solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR017-use-paper-trail-for-draft-live-or-some-other-solution.md -------------------------------------------------------------------------------- /ADR/ADR018-use-govuk-organisation-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR018-use-govuk-organisation-api.md -------------------------------------------------------------------------------- /ADR/ADR019-use-amazon-ses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR019-use-amazon-ses.md -------------------------------------------------------------------------------- /ADR/ADR020-e2e-tests-get-own-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR020-e2e-tests-get-own-repo.md -------------------------------------------------------------------------------- /ADR/ADR021-use-auth0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR021-use-auth0.md -------------------------------------------------------------------------------- /ADR/ADR022-use-postgresql-for-form-creation-in-form-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR022-use-postgresql-for-form-creation-in-form-admin.md -------------------------------------------------------------------------------- /ADR/ADR023-use-uid-in-urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR023-use-uid-in-urls.md -------------------------------------------------------------------------------- /ADR/ADR024-store-allowed-domain-list-as-file-in-forms-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR024-store-allowed-domain-list-as-file-in-forms-deploy.md -------------------------------------------------------------------------------- /ADR/ADR025-remove-papertrail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR025-remove-papertrail.md -------------------------------------------------------------------------------- /ADR/ADR025-use-aasm-to-manage-form-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR025-use-aasm-to-manage-form-state.md -------------------------------------------------------------------------------- /ADR/ADR026-paramaterise-common-terraform-roots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR026-paramaterise-common-terraform-roots.md -------------------------------------------------------------------------------- /ADR/ADR027-scheduled-smoke-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR027-scheduled-smoke-tests.md -------------------------------------------------------------------------------- /ADR/ADR028-use-notify-for-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR028-use-notify-for-users.md -------------------------------------------------------------------------------- /ADR/ADR029-use-shield-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR029-use-shield-advanced.md -------------------------------------------------------------------------------- /ADR/ADR030-use-aws-lambda-to-run-glue-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR030-use-aws-lambda-to-run-glue-code.md -------------------------------------------------------------------------------- /ADR/ADR031-use-pagerduty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR031-use-pagerduty.md -------------------------------------------------------------------------------- /ADR/ADR032-use-statuspage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR032-use-statuspage.md -------------------------------------------------------------------------------- /ADR/ADR033-swapping-jest-vitest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR033-swapping-jest-vitest.md -------------------------------------------------------------------------------- /ADR/ADR034-api-v2-for-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR034-api-v2-for-forms.md -------------------------------------------------------------------------------- /ADR/ADR035-offer-amazon-s3-form-submissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR035-offer-amazon-s3-form-submissions.md -------------------------------------------------------------------------------- /ADR/ADR036-automate-patch-version-bumps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR036-automate-patch-version-bumps.md -------------------------------------------------------------------------------- /ADR/ADR037-implement-review-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR037-implement-review-apps.md -------------------------------------------------------------------------------- /ADR/ADR038-add-psql-database-and-solid-queue-to-forms-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR038-add-psql-database-and-solid-queue-to-forms-runner.md -------------------------------------------------------------------------------- /ADR/ADR039-add-aurora-for-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR039-add-aurora-for-runner.md -------------------------------------------------------------------------------- /ADR/ADR040-make-container-image-tags-mutable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR040-make-container-image-tags-mutable.md -------------------------------------------------------------------------------- /ADR/ADR041-grant-review-apps-workflow-pull-request-write-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR041-grant-review-apps-workflow-pull-request-write-access.md -------------------------------------------------------------------------------- /ADR/ADR041-use-activerecord-encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR041-use-activerecord-encryption.md -------------------------------------------------------------------------------- /ADR/ADR042-use-amazon-s3-file-uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR042-use-amazon-s3-file-uploads.md -------------------------------------------------------------------------------- /ADR/ADR043-use-mobility-with-column-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR043-use-mobility-with-column-strategy.md -------------------------------------------------------------------------------- /ADR/ADR044-translate-api-response-at-request-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR044-translate-api-response-at-request-time.md -------------------------------------------------------------------------------- /ADR/ADR045-remove-forms-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR045-remove-forms-api.md -------------------------------------------------------------------------------- /ADR/ADR046-use-mobility-table-backend-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADR046-use-mobility-table-backend-strategy.md -------------------------------------------------------------------------------- /ADR/ADRXXX-architecture-decision-record-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/ADRXXX-architecture-decision-record-template.md -------------------------------------------------------------------------------- /ADR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/ADR/README.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/README.md -------------------------------------------------------------------------------- /decision-record/DR000-use-github-and-the-adr-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR000-use-github-and-the-adr-process.md -------------------------------------------------------------------------------- /decision-record/DR002-no-charges-for-lower-volume-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR002-no-charges-for-lower-volume-services.md -------------------------------------------------------------------------------- /decision-record/DR003-enough-common-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR003-enough-common-features.md -------------------------------------------------------------------------------- /decision-record/DR004-our-own-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR004-our-own-designer.md -------------------------------------------------------------------------------- /decision-record/DR005-choosing-insolvency-service-as-first-partner.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR005-choosing-insolvency-service-as-first-partner.MD -------------------------------------------------------------------------------- /decision-record/DR006-epics-focus-on-specific-forms.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR006-epics-focus-on-specific-forms.MD -------------------------------------------------------------------------------- /decision-record/DR007-form-is-live-first-then-add-draft.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR007-form-is-live-first-then-add-draft.MD -------------------------------------------------------------------------------- /decision-record/DR008-no-charges-at-all-for-using-GOV.UK-Forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR008-no-charges-at-all-for-using-GOV.UK-Forms.md -------------------------------------------------------------------------------- /decision-record/DR009-who-can-access-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DR009-who-can-access-authentication.md -------------------------------------------------------------------------------- /decision-record/DRXXX-decision-record-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/DRXXX-decision-record-template.md -------------------------------------------------------------------------------- /decision-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/decision-record/README.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/README.md -------------------------------------------------------------------------------- /design/features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/README.md -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/README.md -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/screenshots-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/screenshots-v2/README.md -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/screenshots-v2/confirmation-email-mural-mockup-notify-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/screenshots-v2/confirmation-email-mural-mockup-notify-template.png -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/screenshots-v2/provide-contact-details-for-support-page-updated-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/screenshots-v2/provide-contact-details-for-support-page-updated-content.png -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/screenshots-v2/what-happens-next-page-new-page-title-and-updated-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/screenshots-v2/what-happens-next-page-new-page-title-and-updated-content.png -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/version-1.md -------------------------------------------------------------------------------- /design/features/confirmation-email-for-form-fillers/version-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/confirmation-email-for-form-fillers/version-2.md -------------------------------------------------------------------------------- /design/features/detailed-guidance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/README.md -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/screenshots-v2/README.md -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2/add-guidance-help-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/screenshots-v2/add-guidance-help-text.png -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2/give-your-page-a-heading-on-add-guidance-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/screenshots-v2/give-your-page-a-heading-on-add-guidance-page.png -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2/hint-text-guidance-text-on-edit-question-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/screenshots-v2/hint-text-guidance-text-on-edit-question-page.png -------------------------------------------------------------------------------- /design/features/detailed-guidance/screenshots-v2/updated-formatting-markdown-help-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/screenshots-v2/updated-formatting-markdown-help-text.png -------------------------------------------------------------------------------- /design/features/detailed-guidance/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/version-1.md -------------------------------------------------------------------------------- /design/features/detailed-guidance/version-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/detailed-guidance/version-2.md -------------------------------------------------------------------------------- /design/features/early-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/README.md -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/001.Editor-notification-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/001.Editor-notification-banner.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/002.Get-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/002.Get-started.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/003.Mou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/003.Mou.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/004.Requirements-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/004.Requirements-page.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/005.What-happens-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/005.What-happens-next.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/006.Agreeing-to-mou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/006.Agreeing-to-mou.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/007.Trial-notification-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/007.Trial-notification-banner.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/forms-product-site-homepage-call-to-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/screenshots-v1/forms-product-site-homepage-call-to-action.png -------------------------------------------------------------------------------- /design/features/early-access/screenshots-v1/screenshots: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /design/features/early-access/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/early-access/version-1.md -------------------------------------------------------------------------------- /design/features/editing-drafts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/editing-drafts/README.md -------------------------------------------------------------------------------- /design/features/editing-drafts/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/editing-drafts/version-1.md -------------------------------------------------------------------------------- /design/features/file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/README.md -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/000-create-file-upload-question-answer-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/000-create-file-upload-question-answer-type.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/001-edit-file-upload-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/001-edit-file-upload-question.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/002-upload-a-file-pattern-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/002-upload-a-file-pattern-diagram.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/003-upload-a-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/003-upload-a-file.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/004-check-your-uploaded-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/004-check-your-uploaded-file.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/005-confirm-removing-the-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/005-confirm-removing-the-file.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/006-file-removed-upload-new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/006-file-removed-upload-new-file.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/007-check-your-answers-file-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/007-check-your-answers-file-upload.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/008-check-your-answers-file-upload-page-heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/008-check-your-answers-file-upload-page-heading.png -------------------------------------------------------------------------------- /design/features/file-upload/screenshots-released-version/009-email-submitted-form-responses-with-attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/file-upload/screenshots-released-version/009-email-submitted-form-responses-with-attachments.png -------------------------------------------------------------------------------- /design/features/form-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/README.md -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/001-your-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/001-your-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/002-active-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/002-active-group.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-11-to-30-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-11-to-30-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-31+-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-31+-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-error.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-no-active-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-no-active-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-no-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group-no-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/003-move-form-to-a-different-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/003-move-form-to-a-different-group.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/004-active-group-success-form-moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/004-active-group-success-form-moved.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/101-form-moved-groups-email-group-admin-editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/101-form-moved-groups-email-group-admin-editors.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/102-form-moved-groups-email-org-admins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/102-form-moved-groups-email-org-admins.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/OLD-VERSION-003-move-form-to-a-different-group-no-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/OLD-VERSION-003-move-form-to-a-different-group-no-groups.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/OLD-VERSION-003-move-form-to-a-different-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/OLD-VERSION-003-move-form-to-a-different-group.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/OLD-VERSION-101-form-moved-groups-email-group-admin-editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/OLD-VERSION-101-form-moved-groups-email-group-admin-editors.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/OLD-VERSION-102-form-moved-groups-email-org-admins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/OLD-VERSION-102-form-moved-groups-email-org-admins.png -------------------------------------------------------------------------------- /design/features/form-management/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/form-management/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-management/version-1.md -------------------------------------------------------------------------------- /design/features/form-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-metrics/README.md -------------------------------------------------------------------------------- /design/features/form-metrics/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/form-metrics/version-1.md -------------------------------------------------------------------------------- /design/features/live-draft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/README.md -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/001.Create-a-form-tasklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/001.Create-a-form-tasklist.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/002.Add-and-edit-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/002.Add-and-edit-questions.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/003.Live-form-view-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/003.Live-form-view-only.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/004.Your-questions-view-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/004.Your-questions-view-only.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/005.Landing-page-forms-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/005.Landing-page-forms-list.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/006.Edit-form-in-draft-tasklist-in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/006.Edit-form-in-draft-tasklist-in-progress.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/007.Edit-form-in-draft-tasklist-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/007.Edit-form-in-draft-tasklist-completed.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/008.Preview-draft-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/008.Preview-draft-form.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/009.Make-changes-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/009.Make-changes-live.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/010.Changes-are-live-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/010.Changes-are-live-confirmation.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/011.Preview-live-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/011.Preview-live-form.png -------------------------------------------------------------------------------- /design/features/live-draft/screenshots-v1/012.Live-form-form-filler-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/screenshots-v1/012.Live-form-form-filler-view.png -------------------------------------------------------------------------------- /design/features/live-draft/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/live-draft/version-1.md -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/README.md -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/diagrams.md -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/000-what-kind-of-answer-do-you-need.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/000-what-kind-of-answer-do-you-need.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/001-what-is-your-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/001-what-is-your-question.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/002-how-many-options-can-people-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/002-how-many-options-can-people-select.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/003-create-a-list-of-options-select-one-only-single-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/003-create-a-list-of-options-select-one-only-single-fields.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/004-create-a-list-of-options-select-many-single-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/004-create-a-list-of-options-select-many-single-fields.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/005-create-a-list-of-options-select-many-single-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/005-create-a-list-of-options-select-many-single-fields.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/006-create-a-list-of-options-select-one-only-text-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/006-create-a-list-of-options-select-one-only-text-box.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/007-change-seletion-type-warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/007-change-seletion-type-warnings.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/008-change-selection-type-reduce-options-list-edit-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/008-change-selection-type-reduce-options-list-edit-options.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/009-change-selection-type-reduce-option-list-on-edit-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/009-change-selection-type-reduce-option-list-on-edit-question.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/010-edit-question-options-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/010-edit-question-options-list.png -------------------------------------------------------------------------------- /design/features/long-list-autocomplete/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/long-list-autocomplete/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/payment-links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/README.md -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/001-create-a-form-optional-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/001-create-a-form-optional-task.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay-error-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay-error-summary.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay-error.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/002-add-a-link-to-a-payment-page-on-govuk-pay.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/003-create-a-form-added-payment-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/003-create-a-form-added-payment-link.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/003-success-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/003-success-notification.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/004-create-a-form-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/004-create-a-form-return.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/1000-preview-confirmation-still-need-to-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/1000-preview-confirmation-still-need-to-pay.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/1001-preview-journey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/1001-preview-journey.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/1002-preview-test-email-with-payment-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/1002-preview-test-email-with-payment-link.png -------------------------------------------------------------------------------- /design/features/payment-links/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/payment-links/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/payment-links/version-1.md -------------------------------------------------------------------------------- /design/features/previewing-a-question/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/README.md -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/001-Helping users preview their form Mural design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/001-Helping users preview their form Mural design.png -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/002-check-your-question-simple-answer-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/002-check-your-question-simple-answer-type.png -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/002-preview-question-simple-answer-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/002-preview-question-simple-answer-type.png -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/003-check-your-question-complex-answer-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/003-check-your-question-complex-answer-type.png -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/003-preview-question-complex-answer-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/003-preview-question-complex-answer-type.png -------------------------------------------------------------------------------- /design/features/previewing-a-question/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/previewing-a-question/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/previewing-a-question/version-1.md -------------------------------------------------------------------------------- /design/features/research-email-consent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/README.md -------------------------------------------------------------------------------- /design/features/research-email-consent/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/research-email-consent/screenshots-v1/consent for email about user research journey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/screenshots-v1/consent for email about user research journey.png -------------------------------------------------------------------------------- /design/features/research-email-consent/screenshots-v1/research-email-consent-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/screenshots-v1/research-email-consent-page.png -------------------------------------------------------------------------------- /design/features/research-email-consent/screenshots-v1/users-interested-in-research-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/screenshots-v1/users-interested-in-research-report.png -------------------------------------------------------------------------------- /design/features/research-email-consent/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/research-email-consent/version-1.md -------------------------------------------------------------------------------- /design/features/routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/README.md -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/001-create-a-form-question-route-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/001-create-a-form-question-route-created.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/001-create-a-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/001-create-a-form.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/002-add-route-from-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/002-add-route-from-question.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/003-edit-route-1-is-answered-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/003-edit-route-1-is-answered-as.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/003-edit-route-1-take-the-person-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/003-edit-route-1-take-the-person-to.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/003-edit-route-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/003-edit-route-1.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/004-edit-exit-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/004-edit-exit-page.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/005-edit-question-2s-route-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/005-edit-question-2s-route-branch.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/005-edit-question2s-route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/005-edit-question2s-route.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/006-set-questions-to-skip-after-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/006-set-questions-to-skip-after-question.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/006-set-questions-to-skip-take-the-person-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/006-set-questions-to-skip-take-the-person-to.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/006-set-questions-to-skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/006-set-questions-to-skip.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v3/README.md -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/README.md -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/add-a-route-from-a-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/add-a-route-from-a-question.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/add-and-edit-your-questions-page-with-routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/add-and-edit-your-questions-page-with-routes.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/question-xs-routes-with-1-route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/question-xs-routes-with-1-route.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/questions-xs-routes-with-2-routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/questions-xs-routes-with-2-routes.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/set-questions-to-skip-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/set-questions-to-skip-page.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v4/your-questions-page-for-a-live-form-with-routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v4/your-questions-page-for-a-live-form-with-routes.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/001-add-a-route-from-a-question-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/001-add-a-route-from-a-question-error.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/001-add-a-route-from-a-question-withOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/001-add-a-route-from-a-question-withOptions.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/002-add-a-route-from-a-question-YouCannotAddARouteYet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/002-add-a-route-from-a-question-YouCannotAddARouteYet.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/002-add-a-route-from-a-question-YouHaveNoMoreQuestionsToAddARouteFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/002-add-a-route-from-a-question-YouHaveNoMoreQuestionsToAddARouteFrom.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/003-question-xs-routes-bothRoutesSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/003-question-xs-routes-bothRoutesSet.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/003-question-xs-routes-route1Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/003-question-xs-routes-route1Set.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/004-are-you-sure-you-want-to-delete-route-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/004-are-you-sure-you-want-to-delete-route-1.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer-error.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/005-are-you-sure-you-want-to-delete-the-route-for-any-other-answer.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/006-add-and-edit-your-questions-listWithRouting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/006-add-and-edit-your-questions-listWithRouting.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v5/README.md -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/001-add-a-route-from-a-question-withOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/001-add-a-route-from-a-question-withOptions.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/002-add-route-1-skipPersonTo-Dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/002-add-route-1-skipPersonTo-Dropdown.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/003-edit-exit-page-disabledJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/003-edit-exit-page-disabledJS.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/003-edit-exit-page-markdownEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/003-edit-exit-page-markdownEditor.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/004-edit-exit-page-markdownPreviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/004-edit-exit-page-markdownPreviewer.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/005-question-xs-routes-withExitPageRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/005-question-xs-routes-withExitPageRoute.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/006-edit-route-1-withExitPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/006-edit-route-1-withExitPage.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/007-are-you-sure-you-want-to-delete-this-exit-page-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/007-are-you-sure-you-want-to-delete-this-exit-page-error.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/007-are-you-sure-you-want-to-delete-this-exit-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/007-are-you-sure-you-want-to-delete-this-exit-page.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/008-add-and-edit-your-questions-withRoutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/008-add-and-edit-your-questions-withRoutes.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/009-your-questions-live-view-withRoutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/009-your-questions-live-view-withRoutes.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/010-are-you-sure-you-want-to-delete-this-question-routeStartWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/010-are-you-sure-you-want-to-delete-this-question-routeStartWarning.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/010-question-x-is-the-start-of-a-route-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/010-question-x-is-the-start-of-a-route-warning.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/010-question-x-routes-to-an-exit-page-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/010-question-x-routes-to-an-exit-page-warning.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/011-edit-question-withRoutingConcept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/011-edit-question-withRoutingConcept.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/104-exit-page-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/104-exit-page-outline.png -------------------------------------------------------------------------------- /design/features/routing/screenshots-v6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/screenshots-v6/README.md -------------------------------------------------------------------------------- /design/features/routing/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-1.md -------------------------------------------------------------------------------- /design/features/routing/version-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-2.md -------------------------------------------------------------------------------- /design/features/routing/version-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-3.md -------------------------------------------------------------------------------- /design/features/routing/version-4-branching-iteration-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-4-branching-iteration-2.md -------------------------------------------------------------------------------- /design/features/routing/version-5-branching-iteration-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-5-branching-iteration-3.md -------------------------------------------------------------------------------- /design/features/routing/version-6-exit-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/routing/version-6-exit-pages.md -------------------------------------------------------------------------------- /design/features/user-management/editor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/editor/readme.md -------------------------------------------------------------------------------- /design/features/user-management/group-admin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/group-admin/readme.md -------------------------------------------------------------------------------- /design/features/user-management/organisation-admin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/organisation-admin/readme.md -------------------------------------------------------------------------------- /design/features/user-management/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/readme.md -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/001-selectorganisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/001-selectorganisation.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/002-enteryourfullname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/002-enteryourfullname.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/003-yourgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/003-yourgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/003-yourgroupswithrequests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/003-yourgroupswithrequests.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/004-createanewgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/004-createanewgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/005-membersofthisgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/005-membersofthisgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/006-grouppageforatrialgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/006-grouppageforatrialgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/007-tasklistpage-livegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/007-tasklistpage-livegroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/007-tasklistpage-trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/editor-screenshots/007-tasklistpage-trial.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/editor-screenshots/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/001-selectorganisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/001-selectorganisation.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/002-enteryourfullname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/002-enteryourfullname.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/003-yourgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/003-yourgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/003-yourgroupswithrequests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/003-yourgroupswithrequests.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/004-createanewgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/004-createanewgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/005-grouplandingpagefortrialgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/005-grouplandingpagefortrialgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/005-grouplandingpagefortrialgroup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/005-grouplandingpagefortrialgroup2.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/006-membersofthisgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/006-membersofthisgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/007-Upgraderequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/007-Upgraderequest.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/007-upgraderequest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/007-upgraderequest1.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/008-activegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/008-activegroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/009-addaneditororgroupadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/009-addaneditororgroupadmin.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/010-tasklistpage-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/010-tasklistpage-active.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/010-tasklistpage-trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/group-admin-screenshots/010-tasklistpage-trial.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/group-admin-screenshots/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/001.Selectorganisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/001.Selectorganisation.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/002-Entername.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/002-Entername.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/003-Grouplandingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/003-Grouplandingpage.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/004-Grouplandingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/004-Grouplandingpage.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/005-Membersofthisgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/005-Membersofthisgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/007-Upgradethisgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/007-Upgradethisgroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/007-Upgradethisgroup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/007-Upgradethisgroup2.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/008-Activegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/008-Activegroup.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/009-Addmembers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/009-Addmembers.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/010-tasklistpage-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/010-tasklistpage-active.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/010-tasklistpage-trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/user-management/screenshots-v1/organisation-admin-screenshots/010-tasklistpage-trial.png -------------------------------------------------------------------------------- /design/features/user-management/screenshots-v1/organisation-admin-screenshots/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /design/features/welsh-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/README.md -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/001 - Account applications - Trial group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/001 - Account applications - Trial group.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/002 - Create a form Register for an account - Make Welsh live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/002 - Create a form Register for an account - Make Welsh live.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/002 - Create a form Register for an account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/002 - Create a form Register for an account.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/003 - Add a Welsh version of your form Register for an account - no Welsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/003 - Add a Welsh version of your form Register for an account - no Welsh.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/003- Add a Welsh version of your form Register for an account - Full English form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/003- Add a Welsh version of your form Register for an account - Full English form.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/003- Add a Welsh version of your form Register for an account - Welsh inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/003- Add a Welsh version of your form Register for an account - Welsh inputs.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/1001 - Welsh question page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/1001 - Welsh question page.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/1002 - Welsh CYA page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/1002 - Welsh CYA page.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/1003 - Welsh confirmation page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/1003 - Welsh confirmation page.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/2000-Account-applications-group-page-showing-Welsh-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/2000-Account-applications-group-page-showing-Welsh-version.png -------------------------------------------------------------------------------- /design/features/welsh-version/screenshots-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/screenshots-v1/README.md -------------------------------------------------------------------------------- /design/features/welsh-version/version-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/features/welsh-version/version-1.md -------------------------------------------------------------------------------- /design/prototype-version-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/README.md -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/001-Form-Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/001-Form-Home.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/002-Create-a-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/002-Create-a-form.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/003-Form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/003-Form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/004-Edit-summary-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/004-Edit-summary-page.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/005-Edit-confirmation-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/005-Edit-confirmation-page.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/006-Edit-question-1-hint-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/006-Edit-question-1-hint-open.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/006-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/006-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/007-Edit-question-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/007-Edit-question-2.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/008-Form-Apply-for-a-juggling-licence-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/008-Form-Apply-for-a-juggling-licence-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/009-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/009-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/101-Preview-start-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/101-Preview-start-page.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/102-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/102-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/103-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/103-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/104-Preview-Check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/104-Preview-Check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-1/screenshots/105-Preview-Form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-1/screenshots/105-Preview-Form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/README.md -------------------------------------------------------------------------------- /design/prototype-version-2/edit-question/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/edit-question/README.md -------------------------------------------------------------------------------- /design/prototype-version-2/form-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/form-overview/README.md -------------------------------------------------------------------------------- /design/prototype-version-2/name-your-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/name-your-form/README.md -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/001-Form-Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/001-Form-Home.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/002-Create-a-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/002-Create-a-form.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/003-Form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/003-Form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/004-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/004-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/005-Edit-question-1-hint-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/005-Edit-question-1-hint-open.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/007-Form-Apply-for-a-juggling-licence-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/007-Form-Apply-for-a-juggling-licence-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/008-Edit-check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/008-Edit-check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/009-Edit-form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/009-Edit-form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/101-Preview-start-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/101-Preview-start-page.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/102-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/102-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/103-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/103-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/104-Preview-Check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/104-Preview-Check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-2/screenshots/105-Preview-Form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-2/screenshots/105-Preview-Form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/README.md -------------------------------------------------------------------------------- /design/prototype-version-3/form-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/form-overview/README.md -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/001-GOV.UK-Forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/001-GOV.UK-Forms.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/002-What-is-the-name-of-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/002-What-is-the-name-of-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/004-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/004-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/005-Edit-question-1-hint-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/005-Edit-question-1-hint-open.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/007-Form-overview-Apply-for-a-juggling-licence-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/007-Form-overview-Apply-for-a-juggling-licence-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/008-Edit-check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/008-Edit-check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/009-Edit-form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/009-Edit-form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/010-Delete-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/010-Delete-page.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/011-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/011-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/101-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/101-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/102-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/102-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/103-Preview-Check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/103-Preview-Check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-3/screenshots/104-Preview-Form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-3/screenshots/104-Preview-Form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/README.md -------------------------------------------------------------------------------- /design/prototype-version-4/edit-question/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/edit-question/README.md -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/001-GOV.UK-Forms-added-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/001-GOV.UK-Forms-added-forms.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/001-GOV.UK-Forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/001-GOV.UK-Forms.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/002-What-is-the-name-of-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/002-What-is-the-name-of-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/004-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/004-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/005-Edit-question-2-What-is-your-date-of-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/005-Edit-question-2-What-is-your-date-of-birth.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/006-Form-overview-Apply-for-a-juggling-licence-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/006-Form-overview-Apply-for-a-juggling-licence-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/007-Edit-check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/007-Edit-check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/008-Edit-form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/008-Edit-form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/009-Delete-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/009-Delete-page.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/101-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/101-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/102-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/102-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/103-Preview-Check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/103-Preview-Check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-4/screenshots/104-Preview-Form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-4/screenshots/104-Preview-Form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/README.md -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/.DS_Store -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/001-GOV.UK-Forms-added-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/001-GOV.UK-Forms-added-forms.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/001-GOV.UK-Forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/001-GOV.UK-Forms.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/002-What-is-the-name-of-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/002-What-is-the-name-of-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/003-Form-overview-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/004-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/004-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/005-Edit-question-2-What-is-your-date-of-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/005-Edit-question-2-What-is-your-date-of-birth.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/006-Form-overview-Apply-for-a-juggling-licence-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/006-Form-overview-Apply-for-a-juggling-licence-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/007-Edit-check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/007-Edit-check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/008-Edit-form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/008-Edit-form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/009-Delete-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/009-Delete-page.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/010-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/101-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/101-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/102-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/102-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/103-Preview-Check-your-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/103-Preview-Check-your-answers.png -------------------------------------------------------------------------------- /design/prototype-version-5/screenshots/104-Preview-Form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-5/screenshots/104-Preview-Form-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/README.md -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/001-GOV.UK-Forms-added-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/001-GOV.UK-Forms-added-forms.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/001-GOV.UK-Forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/001-GOV.UK-Forms.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/002-What-is-the-name-of-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/002-What-is-the-name-of-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/003-1-Task-list-page-tags-focus-create-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/003-1-Task-list-page-tags-focus-create-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/003-Create-a-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/003-Create-a-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/004-Add-and-edit-your-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/004-Add-and-edit-your-questions.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/005-Edit-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/005-Edit-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/006-Edit-question-2-What-is-your-date-of-birth.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/007-Add-and-edit-your-questions-added-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/007-Add-and-edit-your-questions-added-questions.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/008-Delete-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/008-Delete-page.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/009-Create-a-form-questions-in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/009-Create-a-form-questions-in-progress.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/010-Edit-form-summary-page-iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/010-Edit-form-summary-page-iframe.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/010-Edit-form-summary-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/010-Edit-form-summary-page.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/011-Create-a-form-declaration-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/011-Create-a-form-declaration-completed.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/012-Edit-form-submitted-page-iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/012-Edit-form-submitted-page-iframe.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/012-Edit-form-submitted-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/012-Edit-form-submitted-page.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/013-Create-a-form-what-happens-next-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/013-Create-a-form-what-happens-next-completed.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/014-Set-the-email-address-for-completed-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/014-Set-the-email-address-for-completed-forms.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/015-Confirmation-code-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/015-Confirmation-code-sent.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/016-Create-a-form-email-address-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/016-Create-a-form-email-address-completed.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/017-Enter-the-confirmation-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/017-Enter-the-confirmation-code.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/018-Email-address-confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/018-Email-address-confirmed.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/018-The-confirmation-code-has-expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/018-The-confirmation-code-has-expired.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/019-Create-a-form-email-confirmation-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/019-Create-a-form-email-confirmation-completed.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/020-Are-you-sure-you-want-to-change-this-email-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/020-Are-you-sure-you-want-to-change-this-email-address.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/021-Publish-form-Apply-for-a-juggling-licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/021-Publish-form-Apply-for-a-juggling-licence.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/101-Preview-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/101-Preview-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/102-Preview-final-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/102-Preview-final-question.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/103-Preview-Check-your-answers-before-submitting-your-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/103-Preview-Check-your-answers-before-submitting-your-form.png -------------------------------------------------------------------------------- /design/prototype-version-6/screenshots/104-Preview-Your-form-has-been-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-6/screenshots/104-Preview-Your-form-has-been-submitted.png -------------------------------------------------------------------------------- /design/prototype-version-7/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/README.MD -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/001-form-home-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/001-form-home-landing.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/001-form-home-with-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/001-form-home-with-form.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/002-form-create-a-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/002-form-create-a-form.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-create-form-statuses-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-create-form-statuses-focus.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-create-form-statuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-create-form-statuses.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-including-email-statuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-including-email-statuses.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-make-live-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-make-live-focus.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-privacy-contact-statuses-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-privacy-contact-statuses-focus.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form-set-email-statuses-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form-set-email-statuses-focus.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/003-create-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/003-create-form.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/004-form-index-no-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/004-form-index-no-questions.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/005-delete-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/005-delete-question-1.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/005-edit-page-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/005-edit-page-1.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/006-edit-page-2-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/006-edit-page-2-saved.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/007-form-index-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/007-form-index-questions.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/008-create-form-question-in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/008-create-form-question-in-progress.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/1001-page-preview-new-tab-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/1001-page-preview-new-tab-1.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/1002-page-preview-new-tab-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/1002-page-preview-new-tab-3.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/1003-check-answers-page-preview-new-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/1003-check-answers-page-preview-new-tab.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/1004-confirmation-page-preview-new-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/1004-confirmation-page-preview-new-tab.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/101-edit-page-check-answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/101-edit-page-check-answers.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/102-edit-page-check-answers-preview-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/102-edit-page-check-answers-preview-pane.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/201-edit-page-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/201-edit-page-confirmation.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/202-edit-page-confirmation-preview-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/202-edit-page-confirmation-preview-pane.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/301-set-completed-forms-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/301-set-completed-forms-email.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/302-confirmation-code-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/302-confirmation-code-sent.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/401-add-confirmation-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/401-add-confirmation-code.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/402-confirmation-code-expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/402-confirmation-code-expired.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/403-email-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/403-email-confirmation.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/501-provide-link-to-privacy-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/501-provide-link-to-privacy-information.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/601-provide-support-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/601-provide-support-details.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/701-make-your-form-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/701-make-your-form-live.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/702-form-is-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/702-form-is-live.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/703-create-form-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/703-create-form-live.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/801-are-you-sure-you-want-to-edit-live-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/801-are-you-sure-you-want-to-edit-live-questions.png -------------------------------------------------------------------------------- /design/prototype-version-7/screenshots/802-form-index-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/screenshots/802-form-index-live.png -------------------------------------------------------------------------------- /design/prototype-version-7/task-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/prototype-version-7/task-list/README.md -------------------------------------------------------------------------------- /design/service-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/design/service-maps.md -------------------------------------------------------------------------------- /diagrams/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/architecture.md -------------------------------------------------------------------------------- /diagrams/class-diagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/class-diagrams/README.md -------------------------------------------------------------------------------- /diagrams/class-diagrams/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/class-diagrams/admin.md -------------------------------------------------------------------------------- /diagrams/class-diagrams/runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/class-diagrams/runner.md -------------------------------------------------------------------------------- /diagrams/form-states-and-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/form-states-and-events.md -------------------------------------------------------------------------------- /diagrams/images/ADR037-architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/images/ADR037-architecture-diagram.png -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/README.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/authentication.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/changing-a-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/changing-a-form.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/creating-a-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/creating-a-form.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/file-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/file-upload.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/filling-in-a-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/filling-in-a-form.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/publishing-a-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/publishing-a-form.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/review-apps-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/review-apps-workflow.md -------------------------------------------------------------------------------- /diagrams/sequence-diagrams/sending-submission-emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/diagrams/sequence-diagrams/sending-submission-emails.md -------------------------------------------------------------------------------- /engagement/README.md: -------------------------------------------------------------------------------- 1 | # Coming soon 2 | -------------------------------------------------------------------------------- /product/readme.md: -------------------------------------------------------------------------------- 1 | Product information and files go here. 2 | -------------------------------------------------------------------------------- /research/2021-08-22-complex-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2021-08-22-complex-logic.md -------------------------------------------------------------------------------- /research/2022-03-15-EPIC-A-TESTING-SECURITY-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-03-15-EPIC-A-TESTING-SECURITY-FEATURES.md -------------------------------------------------------------------------------- /research/2022-05-03_Basic_Form_Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-05-03_Basic_Form_Building.md -------------------------------------------------------------------------------- /research/2022-05-23_Basic_Form_Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-05-23_Basic_Form_Building.md -------------------------------------------------------------------------------- /research/2022-06-16_Accessibility_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-06-16_Accessibility_Testing.md -------------------------------------------------------------------------------- /research/2022-06-28_Basic_Form_Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-06-28_Basic_Form_Building.md -------------------------------------------------------------------------------- /research/2022-06-28_The_Review_Process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-06-28_The_Review_Process.md -------------------------------------------------------------------------------- /research/2022-07-04_Form_Processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-07-04_Form_Processing.md -------------------------------------------------------------------------------- /research/2022-08-15_Task_list_and_steps_to_make_form_live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-08-15_Task_list_and_steps_to_make_form_live.md -------------------------------------------------------------------------------- /research/2022-08-29_Testing_form_processing_efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-08-29_Testing_form_processing_efficiency.md -------------------------------------------------------------------------------- /research/2022-09-12-MCA_Processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-09-12-MCA_Processing.md -------------------------------------------------------------------------------- /research/2022-10-17_Mental_Model_Of_Document_Based_Form_Creators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-10-17_Mental_Model_Of_Document_Based_Form_Creators.md -------------------------------------------------------------------------------- /research/2022-10-24_Form_Builder_Usability_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-10-24_Form_Builder_Usability_Testing.md -------------------------------------------------------------------------------- /research/2022-10-25_Accessibility_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-10-25_Accessibility_Testing.md -------------------------------------------------------------------------------- /research/2022-11-23-Feedback_on_processing_of_the_first_form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-11-23-Feedback_on_processing_of_the_first_form.md -------------------------------------------------------------------------------- /research/2022-12-05-Autofill_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-12-05-Autofill_feature.md -------------------------------------------------------------------------------- /research/2022-12-08_File_Upload_And_Optional_Questions_Processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-12-08_File_Upload_And_Optional_Questions_Processing.md -------------------------------------------------------------------------------- /research/2022-9-12_Testing_form_processing_efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2022-9-12_Testing_form_processing_efficiency.md -------------------------------------------------------------------------------- /research/2023-01-31_Usability_testing_with_private_beta_partner_form_creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-01-31_Usability_testing_with_private_beta_partner_form_creator.md -------------------------------------------------------------------------------- /research/2023-02-06_Testing_options_for_select-from_list_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-02-06_Testing_options_for_select-from_list_questions.md -------------------------------------------------------------------------------- /research/2023-03-03_Accessiblity_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-03-03_Accessiblity_Testing.md -------------------------------------------------------------------------------- /research/2023-04-14_Usability_Testing_Draft_Live_Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-04-14_Usability_Testing_Draft_Live_Feature.md -------------------------------------------------------------------------------- /research/2023-06-07_Usability_testing_Simple_routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-06-07_Usability_testing_Simple_routing.md -------------------------------------------------------------------------------- /research/2023-08-01_Usability_Testing_Form_Completers copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-08-01_Usability_Testing_Form_Completers copy.md -------------------------------------------------------------------------------- /research/2023-08-09-Usability_Testing_Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-08-09-Usability_Testing_Authentication.md -------------------------------------------------------------------------------- /research/2023-08-30_Detailed_Guidance_Usability_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-08-30_Detailed_Guidance_Usability_Testing.md -------------------------------------------------------------------------------- /research/2023-09-26-Early_Access_Journey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-09-26-Early_Access_Journey.md -------------------------------------------------------------------------------- /research/2023-09-26-Form_Completers_Accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-09-26-Form_Completers_Accessibility.md -------------------------------------------------------------------------------- /research/2023-10-11-Data_And_Analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-10-11-Data_And_Analytics.md -------------------------------------------------------------------------------- /research/2023-11-10-Confirmation_Emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-11-10-Confirmation_Emails.md -------------------------------------------------------------------------------- /research/2023-11-17-Accessibility_Testing_Detailed_Guidance_and_Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-11-17-Accessibility_Testing_Detailed_Guidance_and_Routing.md -------------------------------------------------------------------------------- /research/2023-11-20-Barriers_to_adoption_research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2023-11-20-Barriers_to_adoption_research.md -------------------------------------------------------------------------------- /research/2024-04-15_Usability_Testing_User_Management: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-04-15_Usability_Testing_User_Management -------------------------------------------------------------------------------- /research/2024-06-18-concept_testing_add_another_answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-06-18-concept_testing_add_another_answer.md -------------------------------------------------------------------------------- /research/2024-08-28-Add-another-answer-round-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-08-28-Add-another-answer-round-2.md -------------------------------------------------------------------------------- /research/2024-10-24_Branching_round_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-10-24_Branching_round_1.md -------------------------------------------------------------------------------- /research/2024-11-26-Branching-round-2-usability-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-11-26-Branching-round-2-usability-testing.md -------------------------------------------------------------------------------- /research/2024-12-23-Support_Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-12-23-Support_Model.md -------------------------------------------------------------------------------- /research/2024-2-21-Add_a_Payment_Link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2024-2-21-Add_a_Payment_Link.md -------------------------------------------------------------------------------- /research/2025-02-03-Branching_feedback_round_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-02-03-Branching_feedback_round_1.md -------------------------------------------------------------------------------- /research/2025-02-17_Branching_feedback_round_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-02-17_Branching_feedback_round_2.md -------------------------------------------------------------------------------- /research/2025-04-01-Branching_usability_testing_round_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-04-01-Branching_usability_testing_round_4.md -------------------------------------------------------------------------------- /research/2025-05-14-Multiple_branches_concept_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-05-14-Multiple_branches_concept_testing.md -------------------------------------------------------------------------------- /research/2025-09-12-Welsh_forms_interviews_findings_Aug_25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-09-12-Welsh_forms_interviews_findings_Aug_25.md -------------------------------------------------------------------------------- /research/2025-11-18-Welsh-usability-testing-nov25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/2025-11-18-Welsh-usability-testing-nov25.md -------------------------------------------------------------------------------- /research/EPIC B MANAGING TWO VERSIONS OF THE SAME FORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/EPIC B MANAGING TWO VERSIONS OF THE SAME FORM.md -------------------------------------------------------------------------------- /research/EPIC-6-HOW TO HELP USERS WHEN THEY CREATE BAD FORMS.md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/EPIC-6-HOW TO HELP USERS WHEN THEY CREATE BAD FORMS.md.md -------------------------------------------------------------------------------- /research/YYYY-MM-DD-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/forms/HEAD/research/YYYY-MM-DD-template.md --------------------------------------------------------------------------------