├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── auto-merge.yml ├── .npmrc ├── .nvmrc ├── LICENCE.txt ├── README.md ├── app.json ├── app ├── assets │ ├── javascripts │ │ ├── accessible-autocomplete.min.js │ │ ├── accessible-autocomplete.min.js.map │ │ ├── application.js │ │ ├── debounce.js │ │ └── init-autocomplete.js │ ├── rebrand │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── govuk-crest.svg │ │ │ ├── govuk-icon-180.png │ │ │ ├── govuk-icon-192.png │ │ │ ├── govuk-icon-512.png │ │ │ ├── govuk-icon-mask.svg │ │ │ └── govuk-opengraph-image.png │ │ └── manifest.json │ └── sass │ │ ├── application.scss │ │ └── components │ │ ├── _autocomplete.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ ├── _hidden-link.scss │ │ ├── _inset-text.scss │ │ ├── _phase-banner.scss │ │ ├── _primary-navigation.scss │ │ ├── _secondary-nav.scss │ │ ├── _section.scss │ │ ├── service-header-no-imports.scss │ │ ├── service-header.css │ │ ├── service-header.min.css │ │ └── service-header.scss ├── config.json ├── controllers │ └── search.js ├── filters.js ├── routes.js ├── routes │ ├── accepted.js │ ├── account.js │ ├── admin.js │ ├── applications.js │ ├── details │ │ ├── contact-information.js │ │ ├── degree.js │ │ ├── gcse.js │ │ ├── index.js │ │ ├── other-qualifications.js │ │ ├── personal-information.js │ │ ├── personal-statement.js │ │ ├── references.js │ │ ├── safeguarding.js │ │ ├── unpaid-experience.js │ │ └── work-history.js │ ├── invites.js │ └── reference.js ├── services │ └── location-suggestions.js ├── utils │ ├── data.js │ └── index.js └── views │ ├── 404.html │ ├── _components │ ├── application-status │ │ ├── macro.njk │ │ └── template.njk │ ├── offer-summary │ │ ├── macro.njk │ │ └── template.njk │ └── primary-navigation │ │ ├── macro.njk │ │ └── template.njk │ ├── _includes │ ├── adviser-subject-list.html │ ├── item │ │ ├── degrees.html │ │ ├── english-language.html │ │ ├── feedback.html │ │ ├── gcse.html │ │ ├── job.html │ │ ├── other-qualifications.html │ │ ├── reference.html │ │ ├── unpaid-experiences.html │ │ └── work-history.html │ └── review │ │ ├── additional-support.html │ │ ├── choices.html │ │ ├── contact-information.html │ │ ├── degrees.html │ │ ├── english-language.html │ │ ├── equality-and-diversity.html │ │ ├── gcse.html │ │ ├── interview-needs.html │ │ ├── other-qualifications.html │ │ ├── personal-information.html │ │ ├── personal-statement.html │ │ ├── references.html │ │ ├── safeguarding.html │ │ ├── unpaid-experience.html │ │ └── work-history.html │ ├── accepted │ ├── confirm-ske-provider.html │ ├── index.html │ ├── references │ │ ├── action.html │ │ ├── candidate.html │ │ ├── email.html │ │ ├── intro.html │ │ ├── name.html │ │ ├── relationship.html │ │ ├── review.html │ │ ├── start.html │ │ ├── type.html │ │ └── view.html │ └── select-ske-provider.html │ ├── account │ ├── change-email-address.html │ ├── check-email.html │ ├── create-account.html │ ├── index.html │ └── sign-in.html │ ├── application-process.html │ ├── applications │ ├── additional-information.html │ ├── adviser-subject-change.html │ ├── adviser-subject.html │ ├── adviser.html │ ├── confirm.html │ ├── course.html │ ├── decline-confirm.html │ ├── delete.html │ ├── find.html │ ├── index.html │ ├── interruption-module.html │ ├── provider-already-selected.html │ ├── provider-already-submitted.html │ ├── provider.html │ ├── respond.html │ ├── review-and-submit.html │ ├── review-application.html │ ├── review.html │ ├── school-placement.html │ ├── start.html │ ├── withdraw-change-mind.html │ ├── withdraw-confirm.html │ ├── withdraw-different-provider.html │ ├── withdraw-future.html │ ├── withdraw-update.html │ └── withdraw.html │ ├── candidate-pool │ ├── check.html │ ├── email.html │ ├── fee-funded.html │ ├── index.html │ ├── info.html │ ├── invite │ │ ├── decline.html │ │ └── index.html │ ├── locations │ │ ├── add.html │ │ ├── areas.html │ │ ├── auto-add.html │ │ ├── change.html │ │ ├── index.html │ │ └── remove.html │ └── sharing.html │ ├── complaints.html │ ├── dashboard │ └── accept.html │ ├── details │ ├── additional-support │ │ ├── index.html │ │ └── review.html │ ├── contact-information │ │ ├── index.html │ │ ├── international-address.html │ │ ├── review.html │ │ ├── uk-address.html │ │ └── where-do-you-live.html │ ├── degree │ │ ├── completed.html │ │ ├── country.html │ │ ├── delete.html │ │ ├── enic.html │ │ ├── grade.html │ │ ├── graduation-year.html │ │ ├── institution.html │ │ ├── level.html │ │ ├── review.html │ │ ├── start-year.html │ │ ├── subject.html │ │ └── type.html │ ├── english-language │ │ ├── details.html │ │ ├── index.html │ │ ├── review.html │ │ └── type.html │ ├── equality-diversity │ │ ├── disabilities.html │ │ ├── ethnic-background.html │ │ ├── ethnic-group.html │ │ ├── free-school-meals.html │ │ ├── index.html │ │ └── sex.html │ ├── gcse │ │ ├── country.html │ │ ├── enic.html │ │ ├── equivalency.html │ │ ├── grade.html │ │ ├── index.html │ │ ├── no-pass-grade.html │ │ ├── not-yet.html │ │ ├── review.html │ │ └── year.html │ ├── index.html │ ├── interview-needs │ │ ├── index.html │ │ └── review.html │ ├── other-qualifications │ │ ├── delete.html │ │ ├── details.html │ │ ├── index.html │ │ ├── review.html │ │ └── type.html │ ├── personal-information │ │ ├── immigration-status.html │ │ ├── immigration.html │ │ ├── index.html │ │ ├── nationality.html │ │ └── review.html │ ├── personal-statement │ │ ├── index.html │ │ └── review.html │ ├── references │ │ ├── delete.html │ │ ├── email-warning.html │ │ ├── email.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── name.html │ │ ├── relationship.html │ │ └── type.html │ ├── safeguarding │ │ ├── index.html │ │ └── review.html │ ├── unpaid-experience │ │ ├── delete.html │ │ ├── index.html │ │ ├── review.html │ │ └── role.html │ └── work-history │ │ ├── break.html │ │ ├── delete-job.html │ │ ├── index.html │ │ ├── job.html │ │ ├── remove.html │ │ └── review.html │ ├── index.html │ ├── layouts │ ├── email.html │ └── main.html │ ├── manage-prototype-data │ └── view-data.html │ ├── privacy-policy.html │ ├── reference │ ├── comments.html │ ├── confirmation.html │ ├── decline.html │ ├── email-request.html │ ├── finish.html │ ├── index.html │ ├── relationship.html │ ├── review.html │ ├── safeguarding.html │ ├── share.html │ ├── start.html │ └── thank-you.html │ └── survey │ └── index.html └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | audit=false 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.0 2 | -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/javascripts/accessible-autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/javascripts/accessible-autocomplete.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/accessible-autocomplete.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/javascripts/accessible-autocomplete.min.js.map -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/javascripts/debounce.js -------------------------------------------------------------------------------- /app/assets/javascripts/init-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/javascripts/init-autocomplete.js -------------------------------------------------------------------------------- /app/assets/rebrand/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/rebrand/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/favicon.svg -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-crest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-crest.svg -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-icon-180.png -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-icon-192.png -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-icon-512.png -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-icon-mask.svg -------------------------------------------------------------------------------- /app/assets/rebrand/images/govuk-opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/images/govuk-opengraph-image.png -------------------------------------------------------------------------------- /app/assets/rebrand/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/rebrand/manifest.json -------------------------------------------------------------------------------- /app/assets/sass/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/application.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_autocomplete.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_grid.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_header.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_hidden-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_hidden-link.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_inset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_inset-text.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_phase-banner.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/sass/components/_primary-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_primary-navigation.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_secondary-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_secondary-nav.scss -------------------------------------------------------------------------------- /app/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /app/assets/sass/components/service-header-no-imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/service-header-no-imports.scss -------------------------------------------------------------------------------- /app/assets/sass/components/service-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/service-header.css -------------------------------------------------------------------------------- /app/assets/sass/components/service-header.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/service-header.min.css -------------------------------------------------------------------------------- /app/assets/sass/components/service-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/assets/sass/components/service-header.scss -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/config.json -------------------------------------------------------------------------------- /app/controllers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/controllers/search.js -------------------------------------------------------------------------------- /app/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/filters.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/routes/accepted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/accepted.js -------------------------------------------------------------------------------- /app/routes/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/account.js -------------------------------------------------------------------------------- /app/routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/admin.js -------------------------------------------------------------------------------- /app/routes/applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/applications.js -------------------------------------------------------------------------------- /app/routes/details/contact-information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/contact-information.js -------------------------------------------------------------------------------- /app/routes/details/degree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/degree.js -------------------------------------------------------------------------------- /app/routes/details/gcse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/gcse.js -------------------------------------------------------------------------------- /app/routes/details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/index.js -------------------------------------------------------------------------------- /app/routes/details/other-qualifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/other-qualifications.js -------------------------------------------------------------------------------- /app/routes/details/personal-information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/personal-information.js -------------------------------------------------------------------------------- /app/routes/details/personal-statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/personal-statement.js -------------------------------------------------------------------------------- /app/routes/details/references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/references.js -------------------------------------------------------------------------------- /app/routes/details/safeguarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/safeguarding.js -------------------------------------------------------------------------------- /app/routes/details/unpaid-experience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/unpaid-experience.js -------------------------------------------------------------------------------- /app/routes/details/work-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/details/work-history.js -------------------------------------------------------------------------------- /app/routes/invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/invites.js -------------------------------------------------------------------------------- /app/routes/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/routes/reference.js -------------------------------------------------------------------------------- /app/services/location-suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/services/location-suggestions.js -------------------------------------------------------------------------------- /app/utils/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/utils/data.js -------------------------------------------------------------------------------- /app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/utils/index.js -------------------------------------------------------------------------------- /app/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/404.html -------------------------------------------------------------------------------- /app/views/_components/application-status/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/application-status/macro.njk -------------------------------------------------------------------------------- /app/views/_components/application-status/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/application-status/template.njk -------------------------------------------------------------------------------- /app/views/_components/offer-summary/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/offer-summary/macro.njk -------------------------------------------------------------------------------- /app/views/_components/offer-summary/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/offer-summary/template.njk -------------------------------------------------------------------------------- /app/views/_components/primary-navigation/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/primary-navigation/macro.njk -------------------------------------------------------------------------------- /app/views/_components/primary-navigation/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_components/primary-navigation/template.njk -------------------------------------------------------------------------------- /app/views/_includes/adviser-subject-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/adviser-subject-list.html -------------------------------------------------------------------------------- /app/views/_includes/item/degrees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/degrees.html -------------------------------------------------------------------------------- /app/views/_includes/item/english-language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/english-language.html -------------------------------------------------------------------------------- /app/views/_includes/item/feedback.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/_includes/item/gcse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/gcse.html -------------------------------------------------------------------------------- /app/views/_includes/item/job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/job.html -------------------------------------------------------------------------------- /app/views/_includes/item/other-qualifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/other-qualifications.html -------------------------------------------------------------------------------- /app/views/_includes/item/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/reference.html -------------------------------------------------------------------------------- /app/views/_includes/item/unpaid-experiences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/unpaid-experiences.html -------------------------------------------------------------------------------- /app/views/_includes/item/work-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/item/work-history.html -------------------------------------------------------------------------------- /app/views/_includes/review/additional-support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/additional-support.html -------------------------------------------------------------------------------- /app/views/_includes/review/choices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/choices.html -------------------------------------------------------------------------------- /app/views/_includes/review/contact-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/contact-information.html -------------------------------------------------------------------------------- /app/views/_includes/review/degrees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/degrees.html -------------------------------------------------------------------------------- /app/views/_includes/review/english-language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/english-language.html -------------------------------------------------------------------------------- /app/views/_includes/review/equality-and-diversity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/equality-and-diversity.html -------------------------------------------------------------------------------- /app/views/_includes/review/gcse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/gcse.html -------------------------------------------------------------------------------- /app/views/_includes/review/interview-needs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/interview-needs.html -------------------------------------------------------------------------------- /app/views/_includes/review/other-qualifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/other-qualifications.html -------------------------------------------------------------------------------- /app/views/_includes/review/personal-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/personal-information.html -------------------------------------------------------------------------------- /app/views/_includes/review/personal-statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/personal-statement.html -------------------------------------------------------------------------------- /app/views/_includes/review/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/references.html -------------------------------------------------------------------------------- /app/views/_includes/review/safeguarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/safeguarding.html -------------------------------------------------------------------------------- /app/views/_includes/review/unpaid-experience.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/unpaid-experience.html -------------------------------------------------------------------------------- /app/views/_includes/review/work-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/_includes/review/work-history.html -------------------------------------------------------------------------------- /app/views/accepted/confirm-ske-provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/confirm-ske-provider.html -------------------------------------------------------------------------------- /app/views/accepted/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/index.html -------------------------------------------------------------------------------- /app/views/accepted/references/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/action.html -------------------------------------------------------------------------------- /app/views/accepted/references/candidate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/candidate.html -------------------------------------------------------------------------------- /app/views/accepted/references/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/email.html -------------------------------------------------------------------------------- /app/views/accepted/references/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/intro.html -------------------------------------------------------------------------------- /app/views/accepted/references/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/name.html -------------------------------------------------------------------------------- /app/views/accepted/references/relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/relationship.html -------------------------------------------------------------------------------- /app/views/accepted/references/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/review.html -------------------------------------------------------------------------------- /app/views/accepted/references/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/start.html -------------------------------------------------------------------------------- /app/views/accepted/references/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/type.html -------------------------------------------------------------------------------- /app/views/accepted/references/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/references/view.html -------------------------------------------------------------------------------- /app/views/accepted/select-ske-provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/accepted/select-ske-provider.html -------------------------------------------------------------------------------- /app/views/account/change-email-address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/account/change-email-address.html -------------------------------------------------------------------------------- /app/views/account/check-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/account/check-email.html -------------------------------------------------------------------------------- /app/views/account/create-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/account/create-account.html -------------------------------------------------------------------------------- /app/views/account/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/account/index.html -------------------------------------------------------------------------------- /app/views/account/sign-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/account/sign-in.html -------------------------------------------------------------------------------- /app/views/application-process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/application-process.html -------------------------------------------------------------------------------- /app/views/applications/additional-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/additional-information.html -------------------------------------------------------------------------------- /app/views/applications/adviser-subject-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/adviser-subject-change.html -------------------------------------------------------------------------------- /app/views/applications/adviser-subject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/adviser-subject.html -------------------------------------------------------------------------------- /app/views/applications/adviser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/adviser.html -------------------------------------------------------------------------------- /app/views/applications/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/confirm.html -------------------------------------------------------------------------------- /app/views/applications/course.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/course.html -------------------------------------------------------------------------------- /app/views/applications/decline-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/decline-confirm.html -------------------------------------------------------------------------------- /app/views/applications/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/delete.html -------------------------------------------------------------------------------- /app/views/applications/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/find.html -------------------------------------------------------------------------------- /app/views/applications/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/index.html -------------------------------------------------------------------------------- /app/views/applications/interruption-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/interruption-module.html -------------------------------------------------------------------------------- /app/views/applications/provider-already-selected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/provider-already-selected.html -------------------------------------------------------------------------------- /app/views/applications/provider-already-submitted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/provider-already-submitted.html -------------------------------------------------------------------------------- /app/views/applications/provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/provider.html -------------------------------------------------------------------------------- /app/views/applications/respond.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/respond.html -------------------------------------------------------------------------------- /app/views/applications/review-and-submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/review-and-submit.html -------------------------------------------------------------------------------- /app/views/applications/review-application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/review-application.html -------------------------------------------------------------------------------- /app/views/applications/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/review.html -------------------------------------------------------------------------------- /app/views/applications/school-placement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/school-placement.html -------------------------------------------------------------------------------- /app/views/applications/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/start.html -------------------------------------------------------------------------------- /app/views/applications/withdraw-change-mind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw-change-mind.html -------------------------------------------------------------------------------- /app/views/applications/withdraw-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw-confirm.html -------------------------------------------------------------------------------- /app/views/applications/withdraw-different-provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw-different-provider.html -------------------------------------------------------------------------------- /app/views/applications/withdraw-future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw-future.html -------------------------------------------------------------------------------- /app/views/applications/withdraw-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw-update.html -------------------------------------------------------------------------------- /app/views/applications/withdraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/applications/withdraw.html -------------------------------------------------------------------------------- /app/views/candidate-pool/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/check.html -------------------------------------------------------------------------------- /app/views/candidate-pool/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/email.html -------------------------------------------------------------------------------- /app/views/candidate-pool/fee-funded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/fee-funded.html -------------------------------------------------------------------------------- /app/views/candidate-pool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/index.html -------------------------------------------------------------------------------- /app/views/candidate-pool/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/info.html -------------------------------------------------------------------------------- /app/views/candidate-pool/invite/decline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/invite/decline.html -------------------------------------------------------------------------------- /app/views/candidate-pool/invite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/invite/index.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/add.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/areas.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/auto-add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/auto-add.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/change.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/index.html -------------------------------------------------------------------------------- /app/views/candidate-pool/locations/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/locations/remove.html -------------------------------------------------------------------------------- /app/views/candidate-pool/sharing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/candidate-pool/sharing.html -------------------------------------------------------------------------------- /app/views/complaints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/complaints.html -------------------------------------------------------------------------------- /app/views/dashboard/accept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/dashboard/accept.html -------------------------------------------------------------------------------- /app/views/details/additional-support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/additional-support/index.html -------------------------------------------------------------------------------- /app/views/details/additional-support/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/additional-support/review.html -------------------------------------------------------------------------------- /app/views/details/contact-information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/contact-information/index.html -------------------------------------------------------------------------------- /app/views/details/contact-information/international-address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/contact-information/international-address.html -------------------------------------------------------------------------------- /app/views/details/contact-information/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/contact-information/review.html -------------------------------------------------------------------------------- /app/views/details/contact-information/uk-address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/contact-information/uk-address.html -------------------------------------------------------------------------------- /app/views/details/contact-information/where-do-you-live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/contact-information/where-do-you-live.html -------------------------------------------------------------------------------- /app/views/details/degree/completed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/completed.html -------------------------------------------------------------------------------- /app/views/details/degree/country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/country.html -------------------------------------------------------------------------------- /app/views/details/degree/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/delete.html -------------------------------------------------------------------------------- /app/views/details/degree/enic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/enic.html -------------------------------------------------------------------------------- /app/views/details/degree/grade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/grade.html -------------------------------------------------------------------------------- /app/views/details/degree/graduation-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/graduation-year.html -------------------------------------------------------------------------------- /app/views/details/degree/institution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/institution.html -------------------------------------------------------------------------------- /app/views/details/degree/level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/level.html -------------------------------------------------------------------------------- /app/views/details/degree/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/review.html -------------------------------------------------------------------------------- /app/views/details/degree/start-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/start-year.html -------------------------------------------------------------------------------- /app/views/details/degree/subject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/subject.html -------------------------------------------------------------------------------- /app/views/details/degree/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/degree/type.html -------------------------------------------------------------------------------- /app/views/details/english-language/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/english-language/details.html -------------------------------------------------------------------------------- /app/views/details/english-language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/english-language/index.html -------------------------------------------------------------------------------- /app/views/details/english-language/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/english-language/review.html -------------------------------------------------------------------------------- /app/views/details/english-language/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/english-language/type.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/disabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/disabilities.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/ethnic-background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/ethnic-background.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/ethnic-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/ethnic-group.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/free-school-meals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/free-school-meals.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/index.html -------------------------------------------------------------------------------- /app/views/details/equality-diversity/sex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/equality-diversity/sex.html -------------------------------------------------------------------------------- /app/views/details/gcse/country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/country.html -------------------------------------------------------------------------------- /app/views/details/gcse/enic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/enic.html -------------------------------------------------------------------------------- /app/views/details/gcse/equivalency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/equivalency.html -------------------------------------------------------------------------------- /app/views/details/gcse/grade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/grade.html -------------------------------------------------------------------------------- /app/views/details/gcse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/index.html -------------------------------------------------------------------------------- /app/views/details/gcse/no-pass-grade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/no-pass-grade.html -------------------------------------------------------------------------------- /app/views/details/gcse/not-yet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/not-yet.html -------------------------------------------------------------------------------- /app/views/details/gcse/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/review.html -------------------------------------------------------------------------------- /app/views/details/gcse/year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/gcse/year.html -------------------------------------------------------------------------------- /app/views/details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/index.html -------------------------------------------------------------------------------- /app/views/details/interview-needs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/interview-needs/index.html -------------------------------------------------------------------------------- /app/views/details/interview-needs/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/interview-needs/review.html -------------------------------------------------------------------------------- /app/views/details/other-qualifications/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/other-qualifications/delete.html -------------------------------------------------------------------------------- /app/views/details/other-qualifications/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/other-qualifications/details.html -------------------------------------------------------------------------------- /app/views/details/other-qualifications/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/other-qualifications/index.html -------------------------------------------------------------------------------- /app/views/details/other-qualifications/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/other-qualifications/review.html -------------------------------------------------------------------------------- /app/views/details/other-qualifications/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/other-qualifications/type.html -------------------------------------------------------------------------------- /app/views/details/personal-information/immigration-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-information/immigration-status.html -------------------------------------------------------------------------------- /app/views/details/personal-information/immigration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-information/immigration.html -------------------------------------------------------------------------------- /app/views/details/personal-information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-information/index.html -------------------------------------------------------------------------------- /app/views/details/personal-information/nationality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-information/nationality.html -------------------------------------------------------------------------------- /app/views/details/personal-information/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-information/review.html -------------------------------------------------------------------------------- /app/views/details/personal-statement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-statement/index.html -------------------------------------------------------------------------------- /app/views/details/personal-statement/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/personal-statement/review.html -------------------------------------------------------------------------------- /app/views/details/references/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/delete.html -------------------------------------------------------------------------------- /app/views/details/references/email-warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/email-warning.html -------------------------------------------------------------------------------- /app/views/details/references/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/email.html -------------------------------------------------------------------------------- /app/views/details/references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/index.html -------------------------------------------------------------------------------- /app/views/details/references/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/intro.html -------------------------------------------------------------------------------- /app/views/details/references/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/name.html -------------------------------------------------------------------------------- /app/views/details/references/relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/relationship.html -------------------------------------------------------------------------------- /app/views/details/references/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/references/type.html -------------------------------------------------------------------------------- /app/views/details/safeguarding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/safeguarding/index.html -------------------------------------------------------------------------------- /app/views/details/safeguarding/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/safeguarding/review.html -------------------------------------------------------------------------------- /app/views/details/unpaid-experience/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/unpaid-experience/delete.html -------------------------------------------------------------------------------- /app/views/details/unpaid-experience/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/unpaid-experience/index.html -------------------------------------------------------------------------------- /app/views/details/unpaid-experience/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/unpaid-experience/review.html -------------------------------------------------------------------------------- /app/views/details/unpaid-experience/role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/unpaid-experience/role.html -------------------------------------------------------------------------------- /app/views/details/work-history/break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/break.html -------------------------------------------------------------------------------- /app/views/details/work-history/delete-job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/delete-job.html -------------------------------------------------------------------------------- /app/views/details/work-history/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/index.html -------------------------------------------------------------------------------- /app/views/details/work-history/job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/job.html -------------------------------------------------------------------------------- /app/views/details/work-history/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/remove.html -------------------------------------------------------------------------------- /app/views/details/work-history/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/details/work-history/review.html -------------------------------------------------------------------------------- /app/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/index.html -------------------------------------------------------------------------------- /app/views/layouts/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/layouts/email.html -------------------------------------------------------------------------------- /app/views/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/layouts/main.html -------------------------------------------------------------------------------- /app/views/manage-prototype-data/view-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/manage-prototype-data/view-data.html -------------------------------------------------------------------------------- /app/views/privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/privacy-policy.html -------------------------------------------------------------------------------- /app/views/reference/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/comments.html -------------------------------------------------------------------------------- /app/views/reference/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/confirmation.html -------------------------------------------------------------------------------- /app/views/reference/decline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/decline.html -------------------------------------------------------------------------------- /app/views/reference/email-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/email-request.html -------------------------------------------------------------------------------- /app/views/reference/finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/finish.html -------------------------------------------------------------------------------- /app/views/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/index.html -------------------------------------------------------------------------------- /app/views/reference/relationship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/relationship.html -------------------------------------------------------------------------------- /app/views/reference/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/review.html -------------------------------------------------------------------------------- /app/views/reference/safeguarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/safeguarding.html -------------------------------------------------------------------------------- /app/views/reference/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/share.html -------------------------------------------------------------------------------- /app/views/reference/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/start.html -------------------------------------------------------------------------------- /app/views/reference/thank-you.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/reference/thank-you.html -------------------------------------------------------------------------------- /app/views/survey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/app/views/survey/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DFE-Digital/apply-for-teacher-training-prototype/HEAD/package.json --------------------------------------------------------------------------------