├── .adr-dir ├── .codacy.yaml ├── .dockerignore ├── .env ├── .env.test ├── .github ├── dependabot.yml └── workflows │ └── pre-merge-checks.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .scss-lint.yml ├── Dockerfile ├── Dockerfile.heroku ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── govuk-verify-black.png │ │ ├── govuk-verify-black.svg │ │ ├── govuk-verify-horizontal.png │ │ ├── govuk-verify-horizontal.svg │ │ ├── govuk-verify-small-black-text-170px.png │ │ ├── govuk-verify-small-black-text-400X200.png │ │ ├── govuk-verify-small-black-text.png │ │ ├── govuk-verify-small-black-text.svg │ │ ├── govuk-verify.png │ │ ├── govuk-verify.svg │ │ └── loading.gif │ ├── javascripts │ │ ├── 00-cookies.js │ │ ├── ab_test_selector.js │ │ ├── analytics.js │ │ ├── application.js.erb │ │ ├── auto_submit_form.js │ │ ├── continue_to_idp.js │ │ ├── feedback.js │ │ ├── further_information.js │ │ ├── piwik_event_tracking.js │ │ ├── piwik_idp_picker_tracking.js │ │ ├── piwik_secure_cookie.js │ │ ├── validation.js │ │ ├── vendor │ │ │ ├── jquery.inputevent.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.pattern.js │ │ └── will_it_work_for_me.js │ └── stylesheets │ │ ├── application.scss │ │ ├── helpers │ │ ├── _available-languages.scss │ │ ├── _feedback-link.scss │ │ ├── _js-show.scss │ │ ├── _meta-data.scss │ │ ├── _overrides.scss │ │ ├── _validation-message.scss │ │ └── _verify-logo.scss │ │ ├── pages │ │ ├── _choose-a-certified-company.scss │ │ ├── _company.scss │ │ ├── _config-provided-html.scss │ │ ├── _cookies.scss │ │ ├── _failed-uplift.scss │ │ ├── _feedback-landing.scss │ │ ├── _feedback.scss │ │ ├── _logos-container.scss │ │ ├── _privacy-notice.scss │ │ ├── _response-processing.scss │ │ ├── _select-phone.scss │ │ └── _slides.scss │ │ └── verify-frontend.scss ├── constraints │ ├── ab_test_constraint.rb │ ├── loa_match.rb │ └── select_route.rb ├── controllers │ ├── about_controller.rb │ ├── application_controller.rb │ ├── authn_request_controller.rb │ ├── authn_response_controller.rb │ ├── cancelled_registration_controller.rb │ ├── choose_a_certified_company_controller.rb │ ├── completed_registration_controller.rb │ ├── concerns │ │ └── .keep │ ├── confirm_your_identity_controller.rb │ ├── confirmation_controller.rb │ ├── errors_controller.rb │ ├── failed_registration_controller.rb │ ├── failed_sign_in_controller.rb │ ├── failed_uplift_controller.rb │ ├── feedback_controller.rb │ ├── feedback_landing_controller.rb │ ├── feedback_sent_controller.rb │ ├── further_information_controller.rb │ ├── hint_controller.rb │ ├── idp_selection_controller.rb │ ├── initiate_journey_controller.rb │ ├── metadata_controller.rb │ ├── other_ways_to_access_service_controller.rb │ ├── partials │ │ ├── analytics_cookie_partial_controller.rb │ │ ├── analytics_partial_controller.rb │ │ ├── journey_hinting_partial_controller.rb │ │ ├── retrieve_federation_data_partial_controller.rb │ │ ├── transactions_partial_controller.rb │ │ ├── user_cookies_partial_controller.rb │ │ ├── user_errors_partial_controller.rb │ │ ├── user_session_partial_controller.rb │ │ └── viewable_idp_partial_controller.rb │ ├── paused_registration_controller.rb │ ├── prove_identity_controller.rb │ ├── publish_hub_config_controller.rb │ ├── redirect_to_service_controller.rb │ ├── response_processing_controller.rb │ ├── saml_controller.rb │ ├── service_status_controller.rb │ ├── sign_in_controller.rb │ ├── single_idp_journey_controller.rb │ ├── start_controller.rb │ ├── static_controller.rb │ ├── test_analytics_controller.rb │ ├── test_csp_reporter_controller.rb │ ├── test_journey_hint_cookie_controller.rb │ ├── test_saml_controller.rb │ ├── test_single_idp_journey_controller.rb │ ├── test_throttling_cookie_controller.rb │ └── will_it_work_for_me_controller.rb ├── helpers │ └── application_helper.rb ├── models │ ├── .keep │ ├── ab_test │ │ ├── ab_test.rb │ │ └── experiment.rb │ ├── analytics │ │ └── federation_reporter.rb │ ├── concerns │ │ └── .keep │ ├── config_endpoints.rb │ ├── config_proxy.rb │ ├── cookies │ │ └── cookies.rb │ ├── cycle_three │ │ ├── cycle_three_attribute.rb │ │ └── cycle_three_attribute_generator.rb │ ├── cycle_three_attribute_response.rb │ ├── display │ │ ├── cycle_three_display_data.rb │ │ ├── display_data.rb │ │ ├── identity_provider_display_decorator.rb │ │ ├── idp_display_data.rb │ │ ├── not_viewable_identity_provider.rb │ │ ├── not_viewable_scheme.rb │ │ ├── repository_factory.rb │ │ ├── rp │ │ │ ├── display_data_correlator.rb │ │ │ ├── service_list_data_correlator.rb │ │ │ ├── transaction_filter.rb │ │ │ └── transaction_taxon_correlator.rb │ │ ├── rp_display_data.rb │ │ ├── rp_display_repository.rb │ │ └── viewable_identity_provider.rb │ ├── evidence.rb │ ├── feedback_form.rb │ ├── feedback_service.rb │ ├── feedback_source_mapper.rb │ ├── further_information_service.rb │ ├── identity_provider.rb │ ├── identity_provider_request.rb │ ├── idp_authn_response.rb │ ├── idp_list_response.rb │ ├── journey_type.rb │ ├── matching_outcome_response.rb │ ├── metadata_client.rb │ ├── outbound_saml_message.rb │ ├── policy_endpoints.rb │ ├── policy_proxy.rb │ ├── publish_hub_config_client.rb │ ├── response_for_rp.rb │ ├── saml_proxy_api.rb │ ├── saml_proxy_endpoints.rb │ ├── select_idp_response.rb │ ├── selected_provider_data.rb │ ├── session_validator.rb │ ├── session_validator │ │ ├── cookie_size_validator.rb │ │ ├── idp_presence.rb │ │ ├── missing_cookies_validator.rb │ │ ├── no_cookies_validator.rb │ │ ├── requested_loa_validator.rb │ │ ├── session_id_validator.rb │ │ ├── session_start_time_validator.rb │ │ ├── successful_validation.rb │ │ ├── transaction_entity_id_presence.rb │ │ ├── transaction_simple_id_presence.rb │ │ ├── validation.rb │ │ └── validation_failure.rb │ ├── sign_in_process_details_response.rb │ ├── start_form.rb │ ├── transaction_response.rb │ ├── transaction_translation_response.rb │ └── will_it_work_for_me_form.rb ├── services │ └── rp_translation_service.rb └── views │ ├── about │ ├── choosing_a_company.html.erb │ ├── documents.html.erb │ ├── how_verify_works.html.erb │ └── prove_your_identity_another_way.html.erb │ ├── cancelled_registration │ └── cancelled_registration.html.erb │ ├── choose_a_certified_company │ ├── _idp_option.html.erb │ ├── about.html.erb │ └── choose_a_certified_company.html.erb │ ├── completed_registration │ └── index.erb │ ├── confirm_your_identity │ └── index.html.erb │ ├── confirmation │ └── confirmation.html.erb │ ├── errors │ ├── 404.html.erb │ ├── no_cookies.html.erb │ ├── session_error.html.erb │ ├── session_timeout.html.erb │ └── something_went_wrong.html.erb │ ├── failed_registration │ ├── custom_failed_registration.html.erb │ └── failed_registration.html.erb │ ├── failed_sign_in │ └── idp.html.erb │ ├── failed_uplift │ └── index.html.erb │ ├── feedback │ ├── disabled.html.erb │ ├── index.html.erb │ └── sent.html.erb │ ├── feedback_landing │ └── index.html.erb │ ├── feedback_sent │ └── index.html.erb │ ├── further_information │ ├── index.html.erb │ └── timeout.html.erb │ ├── layouts │ ├── application.html.erb │ ├── main_layout.html.erb │ ├── slides.html.erb │ └── test.html.erb │ ├── other_ways_to_access_service │ └── index.html.erb │ ├── paused_registration │ ├── from_resume_link.html.erb │ ├── idp_no_longer_providing_registrations.html.erb │ ├── resume.html.erb │ ├── with_user_session.html.erb │ └── without_user_session.html.erb │ ├── prove_identity │ └── prove_identity.html.erb │ ├── redirect_to_service │ └── redirect_to_service.html.erb │ ├── response_processing │ ├── index.html.erb │ └── matching_error.html.erb │ ├── shared │ ├── _available_languages.html.erb │ ├── _continue_to_idp_form.html.erb │ ├── _feedback_landing_link.html.erb │ ├── _feedback_link.html.erb │ ├── _form-errors.html.erb │ ├── _ga.html.erb │ ├── _idp_list.erb │ ├── _logos_container.html.erb │ ├── _other_ways.html.erb │ ├── _piwik.html.erb │ ├── _transaction_list.html.erb │ ├── _transaction_list_prefer_headless_start.html.erb │ ├── redirect_to_idp.html.erb │ └── sign_in_hint.html.erb │ ├── sign_in │ ├── _disconnected_idp_list.erb │ ├── _disconnected_suggested_idp.erb │ ├── _unavailable_idp_list.erb │ ├── index.html.erb │ └── warn_idp_disconnecting.html.erb │ ├── single_idp_journey │ ├── continue_to_your_idp.html.erb │ └── rp_start_page.html.erb │ ├── start │ └── start.html.erb │ ├── static │ ├── accessibility.cy.html.erb │ ├── accessibility.en.html.erb │ ├── cookies.cy.html.erb │ ├── cookies.en.html.erb │ ├── forgot_company.cy.html.erb │ ├── forgot_company.en.html.erb │ ├── privacy_notice.cy.html.erb │ ├── privacy_notice.en.html.erb │ └── verify_services.html.erb │ ├── test_journey_hint_cookie │ └── index.html.erb │ ├── test_saml │ ├── idp_request.html.erb │ └── index.html.erb │ ├── test_single_idp_journey │ └── index.html.erb │ └── will_it_work_for_me │ ├── index.html.erb │ ├── may_not_work_if_you_live_overseas.html.erb │ ├── why_might_this_not_work_for_me.html.erb │ └── will_not_work_without_uk_address.html.erb ├── architecture-decisions ├── 0001-record-architecture-decisions.md ├── 0002-implement-ab-testing.md ├── 0003-new-ab-testing-approach.md └── 0004-journey-hint-tracking-cookie.md ├── bin ├── bundle ├── cli.sh ├── rails ├── rake ├── setup └── spring ├── conf.d └── zdd_latch.conf ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 00_logging.rb │ ├── 10_configuration.rb │ ├── 20_localisation.rb │ ├── 30_api_proxies.rb │ ├── 40_federation.rb │ ├── ab_tests.rb │ ├── analytics.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── feedback.rb │ ├── feedback_source_mapper.rb │ ├── filter_parameter_logging.rb │ ├── http.rb │ ├── inflections.rb │ ├── metadata_client.rb │ ├── metrics.rb │ ├── middleware_service_status_filter.rb │ ├── middleware_store_session_id.rb │ ├── mime_types.rb │ ├── prometheus.rb │ ├── publish_hub_config_client.rb │ ├── session_store.rb │ ├── session_validator.rb │ ├── throttling.rb │ ├── verify_form_builder.rb │ └── wrap_parameters.rb ├── locales │ ├── cy.yml │ └── en.yml ├── main_routes.rb ├── puma.rb ├── routes.rb └── secrets.yml ├── db └── seeds.rb ├── heroku-startup.sh ├── heroku.yml ├── kill-service.sh ├── lib ├── analytics.rb ├── analytics │ ├── custom_variable.rb │ ├── null_reporter.rb │ ├── piwik_client.rb │ └── reporter.rb ├── api.rb ├── api │ ├── client.rb │ ├── error.rb │ ├── hub_response_handler.rb │ ├── response.rb │ ├── session_error.rb │ ├── session_timeout_error.rb │ └── upstream_error.rb ├── assets │ └── .keep ├── configuration.rb ├── cookie_names.rb ├── errors │ └── warning_level_error.rb ├── feedback │ └── dummy_zendesk_client.rb ├── google_analytics.rb ├── loading_cache.rb ├── metrics.rb ├── metrics │ ├── api_request_reporter.rb │ ├── controller_action_reporter.rb │ ├── event_subscriber.rb │ └── response_status_reporter.rb ├── node_modules │ ├── .yarn-integrity │ └── govuk-frontend │ │ ├── README.md │ │ ├── govuk-prototype-kit.config.json │ │ ├── govuk │ │ ├── _base.scss │ │ ├── all-ie8.scss │ │ ├── all.js │ │ ├── all.scss │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── bold-affa96571d-v2.woff │ │ │ │ ├── bold-b542beb274-v2.woff2 │ │ │ │ ├── light-94a07e06a1-v2.woff2 │ │ │ │ └── light-f591b13f7d-v2.woff │ │ │ └── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── govuk-apple-touch-icon-152x152.png │ │ │ │ ├── govuk-apple-touch-icon-167x167.png │ │ │ │ ├── govuk-apple-touch-icon-180x180.png │ │ │ │ ├── govuk-apple-touch-icon.png │ │ │ │ ├── govuk-crest-2x.png │ │ │ │ ├── govuk-crest.png │ │ │ │ ├── govuk-logotype-crown.png │ │ │ │ ├── govuk-mask-icon.svg │ │ │ │ └── govuk-opengraph-image.png │ │ ├── common.js │ │ ├── components │ │ │ ├── _all.scss │ │ │ ├── accordion │ │ │ │ ├── README.md │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── accordion.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── back-link │ │ │ │ ├── README.md │ │ │ │ ├── _back-link.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── breadcrumbs │ │ │ │ ├── README.md │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── button │ │ │ │ ├── README.md │ │ │ │ ├── _button.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── button.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── character-count │ │ │ │ ├── README.md │ │ │ │ ├── _character-count.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── character-count.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── checkboxes │ │ │ │ ├── README.md │ │ │ │ ├── _checkboxes.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── checkboxes.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── cookie-banner │ │ │ │ ├── README.md │ │ │ │ ├── _cookie-banner.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── date-input │ │ │ │ ├── README.md │ │ │ │ ├── _date-input.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── details │ │ │ │ ├── README.md │ │ │ │ ├── _details.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── details.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── implementation.md │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── error-message │ │ │ │ ├── README.md │ │ │ │ ├── _error-message.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── error-summary │ │ │ │ ├── README.md │ │ │ │ ├── _error-summary.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── error-summary.js │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── fieldset │ │ │ │ ├── README.md │ │ │ │ ├── _fieldset.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── file-upload │ │ │ │ ├── README.md │ │ │ │ ├── _file-upload.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── footer │ │ │ │ ├── README.md │ │ │ │ ├── _footer.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── header │ │ │ │ ├── README.md │ │ │ │ ├── _header.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── header.js │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── hint │ │ │ │ ├── README.md │ │ │ │ ├── _hint.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── input │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _input.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── inset-text │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _inset-text.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── label │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _label.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── notification-banner │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _notification-banner.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ ├── notification-banner.js │ │ │ │ └── template.njk │ │ │ ├── panel │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _panel.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── phase-banner │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _phase-banner.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── radios │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _radios.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ ├── radios.js │ │ │ │ └── template.njk │ │ │ ├── select │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _select.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── skip-link │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _skip-link.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── summary-list │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _summary-list.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── table │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _table.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── tabs │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ ├── tabs.js │ │ │ │ └── template.njk │ │ │ ├── tag │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _tag.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ ├── textarea │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _textarea.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ └── warning-text │ │ │ │ ├── README.md │ │ │ │ ├── _index.scss │ │ │ │ ├── _warning-text.scss │ │ │ │ ├── fixtures.json │ │ │ │ ├── macro-options.json │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ ├── core │ │ │ ├── _all.scss │ │ │ ├── _global-styles.scss │ │ │ ├── _links.scss │ │ │ ├── _lists.scss │ │ │ ├── _section-break.scss │ │ │ ├── _template.scss │ │ │ └── _typography.scss │ │ ├── helpers │ │ │ ├── _all.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _colour.scss │ │ │ ├── _device-pixels.scss │ │ │ ├── _focused.scss │ │ │ ├── _font-faces.scss │ │ │ ├── _grid.scss │ │ │ ├── _links.scss │ │ │ ├── _media-queries.scss │ │ │ ├── _shape-arrow.scss │ │ │ ├── _spacing.scss │ │ │ ├── _typography.scss │ │ │ └── _visually-hidden.scss │ │ ├── objects │ │ │ ├── _all.scss │ │ │ ├── _button-group.scss │ │ │ ├── _form-group.scss │ │ │ ├── _grid.scss │ │ │ ├── _main-wrapper.scss │ │ │ └── _width-container.scss │ │ ├── overrides │ │ │ ├── _all.scss │ │ │ ├── _display.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text-align.scss │ │ │ ├── _typography.scss │ │ │ └── _width.scss │ │ ├── settings │ │ │ ├── _all.scss │ │ │ ├── _assets.scss │ │ │ ├── _colours-applied.scss │ │ │ ├── _colours-organisations.scss │ │ │ ├── _colours-palette.scss │ │ │ ├── _compatibility.scss │ │ │ ├── _global-styles.scss │ │ │ ├── _ie8.scss │ │ │ ├── _links.scss │ │ │ ├── _measurements.scss │ │ │ ├── _media-queries.scss │ │ │ ├── _spacing.scss │ │ │ ├── _typography-font-families.scss │ │ │ ├── _typography-font.scss │ │ │ └── _typography-responsive.scss │ │ ├── template.njk │ │ ├── tools │ │ │ ├── _all.scss │ │ │ ├── _compatibility.scss │ │ │ ├── _exports.scss │ │ │ ├── _font-url.scss │ │ │ ├── _ie8.scss │ │ │ ├── _iff.scss │ │ │ ├── _image-url.scss │ │ │ ├── _px-to-em.scss │ │ │ └── _px-to-rem.scss │ │ ├── utilities │ │ │ ├── _all.scss │ │ │ ├── _clearfix.scss │ │ │ └── _visually-hidden.scss │ │ └── vendor │ │ │ ├── _sass-mq.scss │ │ │ └── polyfills │ │ │ ├── DOMTokenList.js │ │ │ ├── Document.js │ │ │ ├── Element.js │ │ │ ├── Element │ │ │ └── prototype │ │ │ │ ├── classList.js │ │ │ │ ├── closest.js │ │ │ │ ├── matches.js │ │ │ │ ├── nextElementSibling.js │ │ │ │ └── previousElementSibling.js │ │ │ ├── Event.js │ │ │ ├── Function │ │ │ └── prototype │ │ │ │ └── bind.js │ │ │ ├── Object │ │ │ └── defineProperty.js │ │ │ └── Window.js │ │ └── package.json ├── originating_ip_store.rb ├── package-lock.json ├── package.json ├── piwik.rb ├── pooling_client.rb ├── prometheus.rb ├── prometheus │ ├── api_request_reporter.rb │ ├── controller_action_reporter.rb │ ├── event_subscriber.rb │ └── session_timeout_reporter.rb ├── raven │ └── processor │ │ └── cookies.rb ├── redirect_with_see_other.rb ├── service_status.rb ├── service_status_filter.rb ├── ssl_context_factory.rb ├── store_session_id.rb ├── support │ └── raven │ │ └── logger.rb ├── tasks │ ├── .keep │ ├── copy_govuk_dependencies.rake │ ├── lint.rake │ └── zdd.rake ├── verify_form_builder.rb ├── yaml_loader.rb ├── yarn.lock └── zendesk_client.rb ├── log └── .keep ├── packaging ├── postinst.sh └── postrm.sh ├── pre-commit-docker.sh ├── pre-commit.sh ├── public ├── 422.html ├── 500.html ├── favicon.ico ├── get_hint.js ├── googlee6ac195426fef3bb.html ├── robots.txt └── stub-logos │ ├── stub-idp-demo-one.png │ ├── stub-idp-demo-two.png │ ├── stub-idp-disconnected.png │ ├── stub-idp-four.png │ ├── stub-idp-loa1.png │ ├── stub-idp-no-docs.png │ ├── stub-idp-one.png │ ├── stub-idp-three.png │ ├── stub-idp-two.png │ ├── stub-idp-unavailable.png │ ├── stub-idp-zero.png │ └── white │ ├── barclays.png │ ├── digidentity-pre.png │ ├── digidentity.png │ ├── experian.png │ ├── headless-idp.png │ ├── post-office-pre.png │ ├── post-office-stub.png │ ├── post-office.png │ ├── secureidentity.png │ ├── stub-idp-demo-one.png │ ├── stub-idp-demo-three.png │ ├── stub-idp-demo-two.png │ ├── stub-idp-disconnected.png │ ├── stub-idp-four.png │ ├── stub-idp-loa1.png │ ├── stub-idp-no-docs.png │ ├── stub-idp-one.png │ ├── stub-idp-three.png │ ├── stub-idp-two.png │ ├── stub-idp-unavailable.png │ └── stub-idp-zero.png ├── scripts └── deploy.sh ├── spec ├── api_test_helper.rb ├── constraints │ ├── ab_test_constraint_spec.rb │ ├── loa_match_spec.rb │ └── select_route_spec.rb ├── controller_helper.rb ├── controllers │ ├── about_controller_spec.rb │ ├── authn_request_controller_spec.rb │ ├── authn_response_controller_spec.rb │ ├── cancelled_registration_controller_spec.rb │ ├── choose_a_certified_company_controller_spec.rb │ ├── completed_registration_controller_spec.rb │ ├── confirmation_controller_spec.rb │ ├── failed_registration_controller_spec.rb │ ├── feedback_controller_spec.rb │ ├── further_information_controller_spec.rb │ ├── hint_controller_spec.rb │ ├── initiate_journey_controller_spec.rb │ ├── metadata_controller_spec.rb │ ├── paused_registration_controller_spec.rb │ ├── prove_identity_controller_spec.rb │ ├── publish_hub_config_controller_spec.rb │ ├── response_processing_controller_spec.rb │ ├── sign_in_controller_spec.rb │ ├── single_idp_journey_controller_spec.rb │ ├── start_controller_spec.rb │ └── will_it_work_for_me_controller_spec.rb ├── feature_helper.rb ├── features │ ├── idp_selections_reported_to_piwik_spec.rb │ ├── localisation_set_from_different_sources_spec.rb │ ├── redirects_with_journey_hint_authn_request_spec.rb │ ├── redirects_with_see_other_spec.rb │ ├── server_sends_analytics_spec.rb │ ├── service_retrieves_metadata_spec.rb │ ├── service_set_unavailable_spec.rb │ ├── user_encounters_a_404_spec.rb │ ├── user_encounters_error_page_spec.rb │ ├── user_gets_soft_session_timeout_page_spec.rb │ ├── user_sends_authn_request_spec.rb │ ├── user_sends_authn_response_spec.rb │ ├── user_submits_feedback_page_spec.rb │ ├── user_submits_start_page_form_spec.rb │ ├── user_visits_about_choosing_a_company_page_spec.rb │ ├── user_visits_about_documents_spec.rb │ ├── user_visits_about_page_spec.rb │ ├── user_visits_accessibility_page_spec.rb │ ├── user_visits_an_idp_emailed_link_to_paused_page_spec.rb │ ├── user_visits_cancelled_registration_page_spec.rb │ ├── user_visits_choose_a_certified_company_about_idp_page_spec.rb │ ├── user_visits_choose_a_certified_company_page_spec.rb │ ├── user_visits_confirm_your_identity_page_spec.rb │ ├── user_visits_confirmation_page_spec.rb │ ├── user_visits_continue_to_your_idp_page_spec.rb │ ├── user_visits_cookies_page_spec.rb │ ├── user_visits_failed_registration_page_spec.rb │ ├── user_visits_failed_sign_in_page_spec.rb │ ├── user_visits_feedback_page_spec.rb │ ├── user_visits_further_information_page_spec.rb │ ├── user_visits_humanstxt_spec.rb │ ├── user_visits_idp_warning_page_spec.rb │ ├── user_visits_may_not_work_if_you_live_overseas_spec.rb │ ├── user_visits_other_ways_to_access_page_spec.rb │ ├── user_visits_paused_page_spec.rb │ ├── user_visits_privacy_notice_page_spec.rb │ ├── user_visits_prove_your_identity_another_way_page_spec.rb │ ├── user_visits_prove_your_identity_page_spec.rb │ ├── user_visits_redirect_to_service_page_spec.rb │ ├── user_visits_response_processing_page_spec.rb │ ├── user_visits_resume_registration_page_spec.rb │ ├── user_visits_rp_single_idp_start_page_spec.rb │ ├── user_visits_sign_in_page_spec.rb │ ├── user_visits_start_page_spec.rb │ ├── user_visits_verify_services_picker_page_spec.rb │ ├── user_visits_why_might_this_not_work_for_me_page_spec.rb │ ├── user_visits_will_it_work_for_me_page_spec.rb │ ├── user_visits_will_not_work_without_uk_address_page_spec.rb │ └── users_browser_sends_client_side_analytics_spec.rb ├── helpers │ └── application_helper_spec.rb ├── javascripts │ ├── ab_test_selector_spec.js │ ├── auto_submit_form_spec.js │ ├── continue_to_idp_spec.js │ ├── feedback_spec.js │ ├── further_information_spec.js │ ├── mock-ajax.js │ ├── piwik_event_tracking_spec.js │ ├── startpage_spec.js │ ├── support │ │ └── jasmine.yml │ └── will_it_work_for_me_spec.js ├── lib │ ├── analytics │ │ ├── piwik_client_spec.rb │ │ └── reporter_spec.rb │ ├── api │ │ ├── client_spec.rb │ │ └── hub_response_handler_spec.rb │ ├── configuration_spec.rb │ ├── google_analytics_spec.rb │ ├── loading_cache_spec.rb │ ├── metrics │ │ ├── api_request_reporter_spec.rb │ │ ├── controller_action_reporter_spec.rb │ │ ├── event_subscriber_spec.rb │ │ └── response_status_reporter_spec.rb │ ├── originating_ip_store_spec.rb │ ├── piwik_spec.rb │ ├── prometheus │ │ ├── api_request_reporter_spec.rb │ │ ├── controller_action_reporter_spec.rb │ │ ├── event_subscriber_spec.rb │ │ └── session_timeout_reporter_spec.rb │ ├── service_status_spec.rb │ ├── store_session_id_spec.rb │ ├── support │ │ └── raven │ │ │ └── logger_spec.rb │ ├── verify_form_builder_spec.rb │ ├── yaml_loader_spec.rb │ └── zendesk_client_spec.rb ├── logger_helper.rb ├── mock_piwik_middleware.rb ├── models │ ├── ab_test │ │ ├── ab_test_spec.rb │ │ └── experiment_spec.rb │ ├── analytics │ │ └── federation_reporter_spec.rb │ ├── config_proxy_spec.rb │ ├── cycle_three │ │ ├── cycle_three_attribute_generator_spec.rb │ │ └── cycle_three_attribute_spec.rb │ ├── cycle_three_attribute_response_spec.rb │ ├── display │ │ ├── cycle_three_display_data_spec.rb │ │ ├── display_data_spec.rb │ │ ├── identity_provider_display_decorator_spec.rb │ │ ├── idp_display_data_spec.rb │ │ ├── rp │ │ │ ├── display_data_correlator_spec.rb │ │ │ ├── service_list_data_correlator_spec.rb │ │ │ ├── transaction_filter_spec.rb │ │ │ └── transaction_taxon_correlator_spec.rb │ │ ├── rp_display_data_spec.rb │ │ └── rp_display_repository_spec.rb │ ├── feedback_form_spec.rb │ ├── feedback_service_spec.rb │ ├── feedback_source_mapper_spec.rb │ ├── further_information_service_spec.rb │ ├── identity_provider_request_spec.rb │ ├── identity_provider_spec.rb │ ├── idp_list_response_spec.rb │ ├── matching_outcome_response_spec.rb │ ├── metadata_client_spec.rb │ ├── outbound_saml_message_spec.rb │ ├── policy_proxy_spec.rb │ ├── publish_hub_config_client_spec.rb │ ├── saml_proxy_api_spec.rb │ ├── select_idp_response_spec.rb │ ├── session_validator_spec.rb │ └── will_it_work_for_me_form_spec.rb ├── piwik_test_helper.rb ├── rails_helper.rb ├── services │ └── rp_translation_service_spec.rb ├── sign_in_helper.rb ├── spec_helper.rb └── support │ ├── authn_request_redirect_examples.rb │ ├── authn_response_examples.rb │ ├── cookie_matchers.rb │ ├── display_data_examples.rb │ ├── list_size_matcher.rb │ ├── model_examples.rb │ ├── response_processing_examples.rb │ ├── select_idp_examples.rb │ ├── tracking_cookie_examples.rb │ └── will_it_work_for_me_examples.rb ├── startup.sh ├── stub ├── ab_test.yml ├── api │ ├── Gemfile │ ├── Gemfile.lock │ ├── stub_api.rb │ ├── stub_api_conf.ru │ └── stub_api_spec.rb ├── attributes │ ├── DrivingLicenceNumber.yml │ ├── NationalInsuranceNumber.yml │ └── NullableAttribute.yml ├── locales │ ├── cycle3 │ │ ├── DrivingLicenceNumber.yml │ │ ├── NationalInsuranceNumber.yml │ │ └── NullableAttribute.yml │ ├── idps │ │ ├── stub-idp-demo-one.yml │ │ ├── stub-idp-demo-two.yml │ │ ├── stub-idp-disconnected.yml │ │ ├── stub-idp-four.yml │ │ ├── stub-idp-loa1.yml │ │ ├── stub-idp-no-docs.yml │ │ ├── stub-idp-one.yml │ │ ├── stub-idp-three.yml │ │ ├── stub-idp-two.yml │ │ ├── stub-idp-unavailable.yml │ │ └── stub-idp-zero.yml │ └── rps │ │ └── test-rp-non-eidas.yml ├── relying_parties.yml └── throttling.yml ├── upstart └── front.conf └── vendor └── assets ├── javascripts ├── .keep ├── ga.js └── piwik.js └── stylesheets └── .keep /.adr-dir: -------------------------------------------------------------------------------- 1 | architecture-decisions 2 | -------------------------------------------------------------------------------- /.codacy.yaml: -------------------------------------------------------------------------------- 1 | exclude_paths: 2 | - 'lib/node_modules/**/* -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | tmp 2 | log 3 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.env.test -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pre-merge-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.github/workflows/pre-merge-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- 1 | plugin_gems: ['scss_lint-govuk'] -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.heroku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/Dockerfile.heroku -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | front: bundle exec puma 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-black.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-black.svg -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-horizontal.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-horizontal.svg -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-small-black-text-170px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-small-black-text-170px.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-small-black-text-400X200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-small-black-text-400X200.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-small-black-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-small-black-text.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify-small-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify-small-black-text.svg -------------------------------------------------------------------------------- /app/assets/images/govuk-verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify.png -------------------------------------------------------------------------------- /app/assets/images/govuk-verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/govuk-verify.svg -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/javascripts/00-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/00-cookies.js -------------------------------------------------------------------------------- /app/assets/javascripts/ab_test_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/ab_test_selector.js -------------------------------------------------------------------------------- /app/assets/javascripts/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/analytics.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/application.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/auto_submit_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/auto_submit_form.js -------------------------------------------------------------------------------- /app/assets/javascripts/continue_to_idp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/continue_to_idp.js -------------------------------------------------------------------------------- /app/assets/javascripts/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/feedback.js -------------------------------------------------------------------------------- /app/assets/javascripts/further_information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/further_information.js -------------------------------------------------------------------------------- /app/assets/javascripts/piwik_event_tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/piwik_event_tracking.js -------------------------------------------------------------------------------- /app/assets/javascripts/piwik_idp_picker_tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/piwik_idp_picker_tracking.js -------------------------------------------------------------------------------- /app/assets/javascripts/piwik_secure_cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/piwik_secure_cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/validation.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.inputevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/vendor/jquery.inputevent.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/vendor/jquery.validate.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.validate.pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/vendor/jquery.validate.pattern.js -------------------------------------------------------------------------------- /app/assets/javascripts/will_it_work_for_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/javascripts/will_it_work_for_me.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_available-languages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_available-languages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_feedback-link.scss: -------------------------------------------------------------------------------- 1 | .feedback-link { 2 | margin-top: $govuk-gutter; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_js-show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_js-show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_meta-data.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_meta-data.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_overrides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_validation-message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_validation-message.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_verify-logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/helpers/_verify-logo.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_choose-a-certified-company.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_choose-a-certified-company.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_company.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_company.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_config-provided-html.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_config-provided-html.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_cookies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_cookies.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_failed-uplift.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_failed-uplift.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_feedback-landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_feedback-landing.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_feedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_feedback.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_logos-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_logos-container.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_privacy-notice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_privacy-notice.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_response-processing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_response-processing.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_select-phone.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/_slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/pages/_slides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/verify-frontend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/assets/stylesheets/verify-frontend.scss -------------------------------------------------------------------------------- /app/constraints/ab_test_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/constraints/ab_test_constraint.rb -------------------------------------------------------------------------------- /app/constraints/loa_match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/constraints/loa_match.rb -------------------------------------------------------------------------------- /app/constraints/select_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/constraints/select_route.rb -------------------------------------------------------------------------------- /app/controllers/about_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/about_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/authn_request_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/authn_request_controller.rb -------------------------------------------------------------------------------- /app/controllers/authn_response_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/authn_response_controller.rb -------------------------------------------------------------------------------- /app/controllers/cancelled_registration_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/cancelled_registration_controller.rb -------------------------------------------------------------------------------- /app/controllers/choose_a_certified_company_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/choose_a_certified_company_controller.rb -------------------------------------------------------------------------------- /app/controllers/completed_registration_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/completed_registration_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/confirm_your_identity_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/confirm_your_identity_controller.rb -------------------------------------------------------------------------------- /app/controllers/confirmation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/confirmation_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/failed_registration_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/failed_registration_controller.rb -------------------------------------------------------------------------------- /app/controllers/failed_sign_in_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/failed_sign_in_controller.rb -------------------------------------------------------------------------------- /app/controllers/failed_uplift_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/failed_uplift_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedback_landing_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/feedback_landing_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedback_sent_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/feedback_sent_controller.rb -------------------------------------------------------------------------------- /app/controllers/further_information_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/further_information_controller.rb -------------------------------------------------------------------------------- /app/controllers/hint_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/hint_controller.rb -------------------------------------------------------------------------------- /app/controllers/idp_selection_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/idp_selection_controller.rb -------------------------------------------------------------------------------- /app/controllers/initiate_journey_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/initiate_journey_controller.rb -------------------------------------------------------------------------------- /app/controllers/metadata_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/metadata_controller.rb -------------------------------------------------------------------------------- /app/controllers/other_ways_to_access_service_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/other_ways_to_access_service_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/analytics_cookie_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/analytics_cookie_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/analytics_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/analytics_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/journey_hinting_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/journey_hinting_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/retrieve_federation_data_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/retrieve_federation_data_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/transactions_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/transactions_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/user_cookies_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/user_cookies_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/user_errors_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/user_errors_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/user_session_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/user_session_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/partials/viewable_idp_partial_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/partials/viewable_idp_partial_controller.rb -------------------------------------------------------------------------------- /app/controllers/paused_registration_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/paused_registration_controller.rb -------------------------------------------------------------------------------- /app/controllers/prove_identity_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/prove_identity_controller.rb -------------------------------------------------------------------------------- /app/controllers/publish_hub_config_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/publish_hub_config_controller.rb -------------------------------------------------------------------------------- /app/controllers/redirect_to_service_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/redirect_to_service_controller.rb -------------------------------------------------------------------------------- /app/controllers/response_processing_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/response_processing_controller.rb -------------------------------------------------------------------------------- /app/controllers/saml_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/saml_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_status_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/service_status_controller.rb -------------------------------------------------------------------------------- /app/controllers/sign_in_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/sign_in_controller.rb -------------------------------------------------------------------------------- /app/controllers/single_idp_journey_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/single_idp_journey_controller.rb -------------------------------------------------------------------------------- /app/controllers/start_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/start_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/static_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_analytics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_analytics_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_csp_reporter_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_csp_reporter_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_journey_hint_cookie_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_journey_hint_cookie_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_saml_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_saml_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_single_idp_journey_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_single_idp_journey_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_throttling_cookie_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/test_throttling_cookie_controller.rb -------------------------------------------------------------------------------- /app/controllers/will_it_work_for_me_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/controllers/will_it_work_for_me_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ab_test/ab_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/ab_test/ab_test.rb -------------------------------------------------------------------------------- /app/models/ab_test/experiment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/ab_test/experiment.rb -------------------------------------------------------------------------------- /app/models/analytics/federation_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/analytics/federation_reporter.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/config_endpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/config_endpoints.rb -------------------------------------------------------------------------------- /app/models/config_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/config_proxy.rb -------------------------------------------------------------------------------- /app/models/cookies/cookies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/cookies/cookies.rb -------------------------------------------------------------------------------- /app/models/cycle_three/cycle_three_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/cycle_three/cycle_three_attribute.rb -------------------------------------------------------------------------------- /app/models/cycle_three/cycle_three_attribute_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/cycle_three/cycle_three_attribute_generator.rb -------------------------------------------------------------------------------- /app/models/cycle_three_attribute_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/cycle_three_attribute_response.rb -------------------------------------------------------------------------------- /app/models/display/cycle_three_display_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/cycle_three_display_data.rb -------------------------------------------------------------------------------- /app/models/display/display_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/display_data.rb -------------------------------------------------------------------------------- /app/models/display/identity_provider_display_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/identity_provider_display_decorator.rb -------------------------------------------------------------------------------- /app/models/display/idp_display_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/idp_display_data.rb -------------------------------------------------------------------------------- /app/models/display/not_viewable_identity_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/not_viewable_identity_provider.rb -------------------------------------------------------------------------------- /app/models/display/not_viewable_scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/not_viewable_scheme.rb -------------------------------------------------------------------------------- /app/models/display/repository_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/repository_factory.rb -------------------------------------------------------------------------------- /app/models/display/rp/display_data_correlator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp/display_data_correlator.rb -------------------------------------------------------------------------------- /app/models/display/rp/service_list_data_correlator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp/service_list_data_correlator.rb -------------------------------------------------------------------------------- /app/models/display/rp/transaction_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp/transaction_filter.rb -------------------------------------------------------------------------------- /app/models/display/rp/transaction_taxon_correlator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp/transaction_taxon_correlator.rb -------------------------------------------------------------------------------- /app/models/display/rp_display_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp_display_data.rb -------------------------------------------------------------------------------- /app/models/display/rp_display_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/rp_display_repository.rb -------------------------------------------------------------------------------- /app/models/display/viewable_identity_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/display/viewable_identity_provider.rb -------------------------------------------------------------------------------- /app/models/evidence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/evidence.rb -------------------------------------------------------------------------------- /app/models/feedback_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/feedback_form.rb -------------------------------------------------------------------------------- /app/models/feedback_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/feedback_service.rb -------------------------------------------------------------------------------- /app/models/feedback_source_mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/feedback_source_mapper.rb -------------------------------------------------------------------------------- /app/models/further_information_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/further_information_service.rb -------------------------------------------------------------------------------- /app/models/identity_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/identity_provider.rb -------------------------------------------------------------------------------- /app/models/identity_provider_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/identity_provider_request.rb -------------------------------------------------------------------------------- /app/models/idp_authn_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/idp_authn_response.rb -------------------------------------------------------------------------------- /app/models/idp_list_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/idp_list_response.rb -------------------------------------------------------------------------------- /app/models/journey_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/journey_type.rb -------------------------------------------------------------------------------- /app/models/matching_outcome_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/matching_outcome_response.rb -------------------------------------------------------------------------------- /app/models/metadata_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/metadata_client.rb -------------------------------------------------------------------------------- /app/models/outbound_saml_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/outbound_saml_message.rb -------------------------------------------------------------------------------- /app/models/policy_endpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/policy_endpoints.rb -------------------------------------------------------------------------------- /app/models/policy_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/policy_proxy.rb -------------------------------------------------------------------------------- /app/models/publish_hub_config_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/publish_hub_config_client.rb -------------------------------------------------------------------------------- /app/models/response_for_rp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/response_for_rp.rb -------------------------------------------------------------------------------- /app/models/saml_proxy_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/saml_proxy_api.rb -------------------------------------------------------------------------------- /app/models/saml_proxy_endpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/saml_proxy_endpoints.rb -------------------------------------------------------------------------------- /app/models/select_idp_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/select_idp_response.rb -------------------------------------------------------------------------------- /app/models/selected_provider_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/selected_provider_data.rb -------------------------------------------------------------------------------- /app/models/session_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/cookie_size_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/cookie_size_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/idp_presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/idp_presence.rb -------------------------------------------------------------------------------- /app/models/session_validator/missing_cookies_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/missing_cookies_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/no_cookies_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/no_cookies_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/requested_loa_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/requested_loa_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/session_id_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/session_id_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/session_start_time_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/session_start_time_validator.rb -------------------------------------------------------------------------------- /app/models/session_validator/successful_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/successful_validation.rb -------------------------------------------------------------------------------- /app/models/session_validator/transaction_entity_id_presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/transaction_entity_id_presence.rb -------------------------------------------------------------------------------- /app/models/session_validator/transaction_simple_id_presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/transaction_simple_id_presence.rb -------------------------------------------------------------------------------- /app/models/session_validator/validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/validation.rb -------------------------------------------------------------------------------- /app/models/session_validator/validation_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/session_validator/validation_failure.rb -------------------------------------------------------------------------------- /app/models/sign_in_process_details_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/sign_in_process_details_response.rb -------------------------------------------------------------------------------- /app/models/start_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/start_form.rb -------------------------------------------------------------------------------- /app/models/transaction_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/transaction_response.rb -------------------------------------------------------------------------------- /app/models/transaction_translation_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/transaction_translation_response.rb -------------------------------------------------------------------------------- /app/models/will_it_work_for_me_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/models/will_it_work_for_me_form.rb -------------------------------------------------------------------------------- /app/services/rp_translation_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/services/rp_translation_service.rb -------------------------------------------------------------------------------- /app/views/about/choosing_a_company.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/about/choosing_a_company.html.erb -------------------------------------------------------------------------------- /app/views/about/documents.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/about/documents.html.erb -------------------------------------------------------------------------------- /app/views/about/how_verify_works.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/about/how_verify_works.html.erb -------------------------------------------------------------------------------- /app/views/about/prove_your_identity_another_way.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/about/prove_your_identity_another_way.html.erb -------------------------------------------------------------------------------- /app/views/cancelled_registration/cancelled_registration.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/cancelled_registration/cancelled_registration.html.erb -------------------------------------------------------------------------------- /app/views/choose_a_certified_company/_idp_option.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/choose_a_certified_company/_idp_option.html.erb -------------------------------------------------------------------------------- /app/views/choose_a_certified_company/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/choose_a_certified_company/about.html.erb -------------------------------------------------------------------------------- /app/views/completed_registration/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/completed_registration/index.erb -------------------------------------------------------------------------------- /app/views/confirm_your_identity/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/confirm_your_identity/index.html.erb -------------------------------------------------------------------------------- /app/views/confirmation/confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/confirmation/confirmation.html.erb -------------------------------------------------------------------------------- /app/views/errors/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/errors/404.html.erb -------------------------------------------------------------------------------- /app/views/errors/no_cookies.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/errors/no_cookies.html.erb -------------------------------------------------------------------------------- /app/views/errors/session_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/errors/session_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/session_timeout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/errors/session_timeout.html.erb -------------------------------------------------------------------------------- /app/views/errors/something_went_wrong.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/errors/something_went_wrong.html.erb -------------------------------------------------------------------------------- /app/views/failed_registration/custom_failed_registration.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/failed_registration/custom_failed_registration.html.erb -------------------------------------------------------------------------------- /app/views/failed_registration/failed_registration.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/failed_registration/failed_registration.html.erb -------------------------------------------------------------------------------- /app/views/failed_sign_in/idp.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/failed_sign_in/idp.html.erb -------------------------------------------------------------------------------- /app/views/failed_uplift/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/failed_uplift/index.html.erb -------------------------------------------------------------------------------- /app/views/feedback/disabled.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/feedback/disabled.html.erb -------------------------------------------------------------------------------- /app/views/feedback/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/feedback/index.html.erb -------------------------------------------------------------------------------- /app/views/feedback/sent.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/feedback/sent.html.erb -------------------------------------------------------------------------------- /app/views/feedback_landing/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/feedback_landing/index.html.erb -------------------------------------------------------------------------------- /app/views/feedback_sent/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/feedback_sent/index.html.erb -------------------------------------------------------------------------------- /app/views/further_information/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/further_information/index.html.erb -------------------------------------------------------------------------------- /app/views/further_information/timeout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/further_information/timeout.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/main_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/layouts/main_layout.html.erb -------------------------------------------------------------------------------- /app/views/layouts/slides.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/layouts/slides.html.erb -------------------------------------------------------------------------------- /app/views/layouts/test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/layouts/test.html.erb -------------------------------------------------------------------------------- /app/views/other_ways_to_access_service/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/other_ways_to_access_service/index.html.erb -------------------------------------------------------------------------------- /app/views/paused_registration/from_resume_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/paused_registration/from_resume_link.html.erb -------------------------------------------------------------------------------- /app/views/paused_registration/resume.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/paused_registration/resume.html.erb -------------------------------------------------------------------------------- /app/views/paused_registration/with_user_session.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/paused_registration/with_user_session.html.erb -------------------------------------------------------------------------------- /app/views/paused_registration/without_user_session.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/paused_registration/without_user_session.html.erb -------------------------------------------------------------------------------- /app/views/prove_identity/prove_identity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/prove_identity/prove_identity.html.erb -------------------------------------------------------------------------------- /app/views/redirect_to_service/redirect_to_service.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/redirect_to_service/redirect_to_service.html.erb -------------------------------------------------------------------------------- /app/views/response_processing/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/response_processing/index.html.erb -------------------------------------------------------------------------------- /app/views/response_processing/matching_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/response_processing/matching_error.html.erb -------------------------------------------------------------------------------- /app/views/shared/_available_languages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_available_languages.html.erb -------------------------------------------------------------------------------- /app/views/shared/_continue_to_idp_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_continue_to_idp_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_feedback_landing_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_feedback_landing_link.html.erb -------------------------------------------------------------------------------- /app/views/shared/_feedback_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_feedback_link.html.erb -------------------------------------------------------------------------------- /app/views/shared/_form-errors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_form-errors.html.erb -------------------------------------------------------------------------------- /app/views/shared/_ga.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_ga.html.erb -------------------------------------------------------------------------------- /app/views/shared/_idp_list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_idp_list.erb -------------------------------------------------------------------------------- /app/views/shared/_logos_container.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_logos_container.html.erb -------------------------------------------------------------------------------- /app/views/shared/_other_ways.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_other_ways.html.erb -------------------------------------------------------------------------------- /app/views/shared/_piwik.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_piwik.html.erb -------------------------------------------------------------------------------- /app/views/shared/_transaction_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_transaction_list.html.erb -------------------------------------------------------------------------------- /app/views/shared/_transaction_list_prefer_headless_start.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/_transaction_list_prefer_headless_start.html.erb -------------------------------------------------------------------------------- /app/views/shared/redirect_to_idp.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/redirect_to_idp.html.erb -------------------------------------------------------------------------------- /app/views/shared/sign_in_hint.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/shared/sign_in_hint.html.erb -------------------------------------------------------------------------------- /app/views/sign_in/_disconnected_idp_list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/sign_in/_disconnected_idp_list.erb -------------------------------------------------------------------------------- /app/views/sign_in/_disconnected_suggested_idp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/sign_in/_disconnected_suggested_idp.erb -------------------------------------------------------------------------------- /app/views/sign_in/_unavailable_idp_list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/sign_in/_unavailable_idp_list.erb -------------------------------------------------------------------------------- /app/views/sign_in/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/sign_in/index.html.erb -------------------------------------------------------------------------------- /app/views/sign_in/warn_idp_disconnecting.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/sign_in/warn_idp_disconnecting.html.erb -------------------------------------------------------------------------------- /app/views/single_idp_journey/continue_to_your_idp.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/single_idp_journey/continue_to_your_idp.html.erb -------------------------------------------------------------------------------- /app/views/single_idp_journey/rp_start_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/single_idp_journey/rp_start_page.html.erb -------------------------------------------------------------------------------- /app/views/start/start.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/start/start.html.erb -------------------------------------------------------------------------------- /app/views/static/accessibility.cy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/accessibility.cy.html.erb -------------------------------------------------------------------------------- /app/views/static/accessibility.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/accessibility.en.html.erb -------------------------------------------------------------------------------- /app/views/static/cookies.cy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/cookies.cy.html.erb -------------------------------------------------------------------------------- /app/views/static/cookies.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/cookies.en.html.erb -------------------------------------------------------------------------------- /app/views/static/forgot_company.cy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/forgot_company.cy.html.erb -------------------------------------------------------------------------------- /app/views/static/forgot_company.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/forgot_company.en.html.erb -------------------------------------------------------------------------------- /app/views/static/privacy_notice.cy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/privacy_notice.cy.html.erb -------------------------------------------------------------------------------- /app/views/static/privacy_notice.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/privacy_notice.en.html.erb -------------------------------------------------------------------------------- /app/views/static/verify_services.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/static/verify_services.html.erb -------------------------------------------------------------------------------- /app/views/test_journey_hint_cookie/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/test_journey_hint_cookie/index.html.erb -------------------------------------------------------------------------------- /app/views/test_saml/idp_request.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/test_saml/idp_request.html.erb -------------------------------------------------------------------------------- /app/views/test_saml/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/test_saml/index.html.erb -------------------------------------------------------------------------------- /app/views/test_single_idp_journey/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/test_single_idp_journey/index.html.erb -------------------------------------------------------------------------------- /app/views/will_it_work_for_me/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/will_it_work_for_me/index.html.erb -------------------------------------------------------------------------------- /app/views/will_it_work_for_me/why_might_this_not_work_for_me.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/will_it_work_for_me/why_might_this_not_work_for_me.html.erb -------------------------------------------------------------------------------- /app/views/will_it_work_for_me/will_not_work_without_uk_address.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/app/views/will_it_work_for_me/will_not_work_without_uk_address.html.erb -------------------------------------------------------------------------------- /architecture-decisions/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/architecture-decisions/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /architecture-decisions/0002-implement-ab-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/architecture-decisions/0002-implement-ab-testing.md -------------------------------------------------------------------------------- /architecture-decisions/0003-new-ab-testing-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/architecture-decisions/0003-new-ab-testing-approach.md -------------------------------------------------------------------------------- /architecture-decisions/0004-journey-hint-tracking-cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/architecture-decisions/0004-journey-hint-tracking-cookie.md -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/cli.sh -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/bin/spring -------------------------------------------------------------------------------- /conf.d/zdd_latch.conf: -------------------------------------------------------------------------------- 1 | export ZDD_LATCH=/ida/front/tmp/.service_unavailable 2 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/00_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/00_logging.rb -------------------------------------------------------------------------------- /config/initializers/10_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/10_configuration.rb -------------------------------------------------------------------------------- /config/initializers/20_localisation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/20_localisation.rb -------------------------------------------------------------------------------- /config/initializers/30_api_proxies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/30_api_proxies.rb -------------------------------------------------------------------------------- /config/initializers/40_federation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/40_federation.rb -------------------------------------------------------------------------------- /config/initializers/ab_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/ab_tests.rb -------------------------------------------------------------------------------- /config/initializers/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/analytics.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/feedback.rb -------------------------------------------------------------------------------- /config/initializers/feedback_source_mapper.rb: -------------------------------------------------------------------------------- 1 | FEEDBACK_SOURCE_MAPPER = FeedbackSourceMapper.new(CONFIG.product_page_url) 2 | -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/http.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/metadata_client.rb: -------------------------------------------------------------------------------- 1 | METADATA_CLIENT = MetadataClient.new(CONFIG.saml_proxy_host) 2 | -------------------------------------------------------------------------------- /config/initializers/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/metrics.rb -------------------------------------------------------------------------------- /config/initializers/middleware_service_status_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/middleware_service_status_filter.rb -------------------------------------------------------------------------------- /config/initializers/middleware_store_session_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/middleware_store_session_id.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/publish_hub_config_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/publish_hub_config_client.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/session_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/session_validator.rb -------------------------------------------------------------------------------- /config/initializers/throttling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/throttling.rb -------------------------------------------------------------------------------- /config/initializers/verify_form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/verify_form_builder.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/locales/cy.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/main_routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/main_routes.rb -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /heroku-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/heroku-startup.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/heroku.yml -------------------------------------------------------------------------------- /kill-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/kill-service.sh -------------------------------------------------------------------------------- /lib/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/analytics.rb -------------------------------------------------------------------------------- /lib/analytics/custom_variable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/analytics/custom_variable.rb -------------------------------------------------------------------------------- /lib/analytics/null_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/analytics/null_reporter.rb -------------------------------------------------------------------------------- /lib/analytics/piwik_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/analytics/piwik_client.rb -------------------------------------------------------------------------------- /lib/analytics/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/analytics/reporter.rb -------------------------------------------------------------------------------- /lib/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api.rb -------------------------------------------------------------------------------- /lib/api/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/client.rb -------------------------------------------------------------------------------- /lib/api/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/error.rb -------------------------------------------------------------------------------- /lib/api/hub_response_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/hub_response_handler.rb -------------------------------------------------------------------------------- /lib/api/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/response.rb -------------------------------------------------------------------------------- /lib/api/session_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/session_error.rb -------------------------------------------------------------------------------- /lib/api/session_timeout_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/session_timeout_error.rb -------------------------------------------------------------------------------- /lib/api/upstream_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/api/upstream_error.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/configuration.rb -------------------------------------------------------------------------------- /lib/cookie_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/cookie_names.rb -------------------------------------------------------------------------------- /lib/errors/warning_level_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/errors/warning_level_error.rb -------------------------------------------------------------------------------- /lib/feedback/dummy_zendesk_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/feedback/dummy_zendesk_client.rb -------------------------------------------------------------------------------- /lib/google_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/google_analytics.rb -------------------------------------------------------------------------------- /lib/loading_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/loading_cache.rb -------------------------------------------------------------------------------- /lib/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/metrics.rb -------------------------------------------------------------------------------- /lib/metrics/api_request_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/metrics/api_request_reporter.rb -------------------------------------------------------------------------------- /lib/metrics/controller_action_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/metrics/controller_action_reporter.rb -------------------------------------------------------------------------------- /lib/metrics/event_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/metrics/event_subscriber.rb -------------------------------------------------------------------------------- /lib/metrics/response_status_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/metrics/response_status_reporter.rb -------------------------------------------------------------------------------- /lib/node_modules/.yarn-integrity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/.yarn-integrity -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk-prototype-kit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk-prototype-kit.config.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/_base.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/all-ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/all-ie8.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/all.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/assets/images/favicon.ico -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/assets/images/govuk-crest-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/assets/images/govuk-crest-2x.png -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/assets/images/govuk-crest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/assets/images/govuk-crest.png -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/common.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/accordion/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/accordion/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/accordion/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/back-link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/back-link/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/back-link/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/back-link/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/_button.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/button.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/button/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/button/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/checkboxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/checkboxes/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/checkboxes/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/checkboxes/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/date-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/date-input/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/date-input/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/date-input/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/details/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/details/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/details/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/details/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/details/details.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/details/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/details/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/details/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/details/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/fieldset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/fieldset/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/fieldset/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/fieldset/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/fieldset/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/fieldset/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/_footer.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/footer/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/footer/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/_header.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/header.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/header/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/header/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/_hint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/_hint.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/hint/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/hint/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/_input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/_input.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/input/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/input/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/inset-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/inset-text/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/inset-text/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/inset-text/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/_label.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/label/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/label/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/_panel.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/panel/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/panel/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/_radios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/_radios.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/radios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/radios.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/radios/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/radios/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/_select.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/select/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/select/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/skip-link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/skip-link/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/skip-link/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/skip-link/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/_table.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/table/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/table/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/_tabs.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/tabs.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tabs/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tabs/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/_tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/_tag.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/fixtures.json -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/tag/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/tag/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/textarea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/textarea/README.md -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/textarea/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/textarea/_index.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/components/textarea/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/components/textarea/macro.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_global-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_global-styles.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_links.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_lists.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_section-break.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_section-break.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_template.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/core/_typography.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_clearfix.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_colour.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_colour.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_device-pixels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_device-pixels.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_focused.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_focused.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_font-faces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_font-faces.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_grid.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_links.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_media-queries.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_shape-arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_shape-arrow.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_spacing.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_typography.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_button-group.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_form-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_form-group.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_grid.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/objects/_width-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/objects/_width-container.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_display.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_spacing.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_text-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_text-align.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_typography.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/overrides/_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/overrides/_width.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_assets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_assets.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_colours-applied.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_colours-applied.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_colours-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_colours-palette.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_compatibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_compatibility.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_global-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_global-styles.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_ie8.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_links.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_measurements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_measurements.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_media-queries.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_spacing.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/settings/_typography-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/settings/_typography-font.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/template.njk -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_compatibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_compatibility.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_exports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_exports.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_font-url.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_font-url.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_ie8.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_iff.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_iff.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_image-url.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_image-url.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_px-to-em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_px-to-em.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/tools/_px-to-rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/tools/_px-to-rem.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/utilities/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/utilities/_all.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/utilities/_clearfix.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/utilities/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/utilities/_visually-hidden.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/vendor/_sass-mq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/vendor/_sass-mq.scss -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Document.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Element.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Event.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/govuk/vendor/polyfills/Window.js -------------------------------------------------------------------------------- /lib/node_modules/govuk-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/node_modules/govuk-frontend/package.json -------------------------------------------------------------------------------- /lib/originating_ip_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/originating_ip_store.rb -------------------------------------------------------------------------------- /lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/package-lock.json -------------------------------------------------------------------------------- /lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/package.json -------------------------------------------------------------------------------- /lib/piwik.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/piwik.rb -------------------------------------------------------------------------------- /lib/pooling_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/pooling_client.rb -------------------------------------------------------------------------------- /lib/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/prometheus.rb -------------------------------------------------------------------------------- /lib/prometheus/api_request_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/prometheus/api_request_reporter.rb -------------------------------------------------------------------------------- /lib/prometheus/controller_action_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/prometheus/controller_action_reporter.rb -------------------------------------------------------------------------------- /lib/prometheus/event_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/prometheus/event_subscriber.rb -------------------------------------------------------------------------------- /lib/prometheus/session_timeout_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/prometheus/session_timeout_reporter.rb -------------------------------------------------------------------------------- /lib/raven/processor/cookies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/raven/processor/cookies.rb -------------------------------------------------------------------------------- /lib/redirect_with_see_other.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/redirect_with_see_other.rb -------------------------------------------------------------------------------- /lib/service_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/service_status.rb -------------------------------------------------------------------------------- /lib/service_status_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/service_status_filter.rb -------------------------------------------------------------------------------- /lib/ssl_context_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/ssl_context_factory.rb -------------------------------------------------------------------------------- /lib/store_session_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/store_session_id.rb -------------------------------------------------------------------------------- /lib/support/raven/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/support/raven/logger.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/copy_govuk_dependencies.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/tasks/copy_govuk_dependencies.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/zdd.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/tasks/zdd.rake -------------------------------------------------------------------------------- /lib/verify_form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/verify_form_builder.rb -------------------------------------------------------------------------------- /lib/yaml_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/yaml_loader.rb -------------------------------------------------------------------------------- /lib/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/yarn.lock -------------------------------------------------------------------------------- /lib/zendesk_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/lib/zendesk_client.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/postinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/packaging/postinst.sh -------------------------------------------------------------------------------- /packaging/postrm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/packaging/postrm.sh -------------------------------------------------------------------------------- /pre-commit-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/pre-commit-docker.sh -------------------------------------------------------------------------------- /pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/pre-commit.sh -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/get_hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/get_hint.js -------------------------------------------------------------------------------- /public/googlee6ac195426fef3bb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/googlee6ac195426fef3bb.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-demo-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-demo-one.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-demo-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-demo-two.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-disconnected.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-four.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-loa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-loa1.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-no-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-no-docs.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-one.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-three.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-two.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-unavailable.png -------------------------------------------------------------------------------- /public/stub-logos/stub-idp-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/stub-idp-zero.png -------------------------------------------------------------------------------- /public/stub-logos/white/barclays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/barclays.png -------------------------------------------------------------------------------- /public/stub-logos/white/digidentity-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/digidentity-pre.png -------------------------------------------------------------------------------- /public/stub-logos/white/digidentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/digidentity.png -------------------------------------------------------------------------------- /public/stub-logos/white/experian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/experian.png -------------------------------------------------------------------------------- /public/stub-logos/white/headless-idp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/headless-idp.png -------------------------------------------------------------------------------- /public/stub-logos/white/post-office-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/post-office-pre.png -------------------------------------------------------------------------------- /public/stub-logos/white/post-office-stub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/post-office-stub.png -------------------------------------------------------------------------------- /public/stub-logos/white/post-office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/post-office.png -------------------------------------------------------------------------------- /public/stub-logos/white/secureidentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/secureidentity.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-demo-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-demo-one.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-demo-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-demo-three.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-demo-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-demo-two.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-disconnected.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-four.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-loa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-loa1.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-no-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-no-docs.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-one.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-three.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-two.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-unavailable.png -------------------------------------------------------------------------------- /public/stub-logos/white/stub-idp-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/public/stub-logos/white/stub-idp-zero.png -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /spec/api_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/api_test_helper.rb -------------------------------------------------------------------------------- /spec/constraints/ab_test_constraint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/constraints/ab_test_constraint_spec.rb -------------------------------------------------------------------------------- /spec/constraints/loa_match_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/constraints/loa_match_spec.rb -------------------------------------------------------------------------------- /spec/constraints/select_route_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/constraints/select_route_spec.rb -------------------------------------------------------------------------------- /spec/controller_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controller_helper.rb -------------------------------------------------------------------------------- /spec/controllers/about_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/about_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/authn_request_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/authn_request_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/authn_response_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/authn_response_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/cancelled_registration_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/cancelled_registration_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/choose_a_certified_company_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/choose_a_certified_company_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/completed_registration_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/completed_registration_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/confirmation_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/confirmation_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/failed_registration_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/failed_registration_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/feedback_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/feedback_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/further_information_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/further_information_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/hint_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/hint_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/initiate_journey_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/initiate_journey_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/metadata_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/metadata_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/paused_registration_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/paused_registration_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/prove_identity_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/prove_identity_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/publish_hub_config_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/publish_hub_config_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/response_processing_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/response_processing_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sign_in_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/sign_in_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/single_idp_journey_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/single_idp_journey_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/start_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/start_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/will_it_work_for_me_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/controllers/will_it_work_for_me_controller_spec.rb -------------------------------------------------------------------------------- /spec/feature_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/feature_helper.rb -------------------------------------------------------------------------------- /spec/features/idp_selections_reported_to_piwik_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/idp_selections_reported_to_piwik_spec.rb -------------------------------------------------------------------------------- /spec/features/localisation_set_from_different_sources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/localisation_set_from_different_sources_spec.rb -------------------------------------------------------------------------------- /spec/features/redirects_with_journey_hint_authn_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/redirects_with_journey_hint_authn_request_spec.rb -------------------------------------------------------------------------------- /spec/features/redirects_with_see_other_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/redirects_with_see_other_spec.rb -------------------------------------------------------------------------------- /spec/features/server_sends_analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/server_sends_analytics_spec.rb -------------------------------------------------------------------------------- /spec/features/service_retrieves_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/service_retrieves_metadata_spec.rb -------------------------------------------------------------------------------- /spec/features/service_set_unavailable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/service_set_unavailable_spec.rb -------------------------------------------------------------------------------- /spec/features/user_encounters_a_404_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_encounters_a_404_spec.rb -------------------------------------------------------------------------------- /spec/features/user_encounters_error_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_encounters_error_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_gets_soft_session_timeout_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_gets_soft_session_timeout_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_sends_authn_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_sends_authn_request_spec.rb -------------------------------------------------------------------------------- /spec/features/user_sends_authn_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_sends_authn_response_spec.rb -------------------------------------------------------------------------------- /spec/features/user_submits_feedback_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_submits_feedback_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_submits_start_page_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_submits_start_page_form_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_about_choosing_a_company_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_about_choosing_a_company_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_about_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_about_documents_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_about_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_accessibility_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_accessibility_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_an_idp_emailed_link_to_paused_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_an_idp_emailed_link_to_paused_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_cancelled_registration_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_cancelled_registration_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_choose_a_certified_company_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_choose_a_certified_company_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_confirm_your_identity_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_confirm_your_identity_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_confirmation_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_confirmation_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_continue_to_your_idp_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_continue_to_your_idp_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_cookies_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_cookies_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_failed_registration_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_failed_registration_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_failed_sign_in_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_failed_sign_in_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_feedback_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_feedback_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_further_information_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_further_information_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_humanstxt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_humanstxt_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_idp_warning_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_idp_warning_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_may_not_work_if_you_live_overseas_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_may_not_work_if_you_live_overseas_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_other_ways_to_access_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_other_ways_to_access_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_paused_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_paused_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_privacy_notice_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_privacy_notice_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_prove_your_identity_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_prove_your_identity_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_redirect_to_service_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_redirect_to_service_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_response_processing_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_response_processing_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_resume_registration_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_resume_registration_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_rp_single_idp_start_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_rp_single_idp_start_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_sign_in_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_sign_in_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_start_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_start_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_verify_services_picker_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_verify_services_picker_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_why_might_this_not_work_for_me_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_why_might_this_not_work_for_me_page_spec.rb -------------------------------------------------------------------------------- /spec/features/user_visits_will_it_work_for_me_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/user_visits_will_it_work_for_me_page_spec.rb -------------------------------------------------------------------------------- /spec/features/users_browser_sends_client_side_analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/features/users_browser_sends_client_side_analytics_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/ab_test_selector_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/ab_test_selector_spec.js -------------------------------------------------------------------------------- /spec/javascripts/auto_submit_form_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/auto_submit_form_spec.js -------------------------------------------------------------------------------- /spec/javascripts/continue_to_idp_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/continue_to_idp_spec.js -------------------------------------------------------------------------------- /spec/javascripts/feedback_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/feedback_spec.js -------------------------------------------------------------------------------- /spec/javascripts/further_information_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/further_information_spec.js -------------------------------------------------------------------------------- /spec/javascripts/mock-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/mock-ajax.js -------------------------------------------------------------------------------- /spec/javascripts/piwik_event_tracking_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/piwik_event_tracking_spec.js -------------------------------------------------------------------------------- /spec/javascripts/startpage_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/startpage_spec.js -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/support/jasmine.yml -------------------------------------------------------------------------------- /spec/javascripts/will_it_work_for_me_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/javascripts/will_it_work_for_me_spec.js -------------------------------------------------------------------------------- /spec/lib/analytics/piwik_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/analytics/piwik_client_spec.rb -------------------------------------------------------------------------------- /spec/lib/analytics/reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/analytics/reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/api/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/api/client_spec.rb -------------------------------------------------------------------------------- /spec/lib/api/hub_response_handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/api/hub_response_handler_spec.rb -------------------------------------------------------------------------------- /spec/lib/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/configuration_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/google_analytics_spec.rb -------------------------------------------------------------------------------- /spec/lib/loading_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/loading_cache_spec.rb -------------------------------------------------------------------------------- /spec/lib/metrics/api_request_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/metrics/api_request_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/metrics/controller_action_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/metrics/controller_action_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/metrics/event_subscriber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/metrics/event_subscriber_spec.rb -------------------------------------------------------------------------------- /spec/lib/metrics/response_status_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/metrics/response_status_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/originating_ip_store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/originating_ip_store_spec.rb -------------------------------------------------------------------------------- /spec/lib/piwik_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/piwik_spec.rb -------------------------------------------------------------------------------- /spec/lib/prometheus/api_request_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/prometheus/api_request_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/prometheus/controller_action_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/prometheus/controller_action_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/prometheus/event_subscriber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/prometheus/event_subscriber_spec.rb -------------------------------------------------------------------------------- /spec/lib/prometheus/session_timeout_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/prometheus/session_timeout_reporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/service_status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/service_status_spec.rb -------------------------------------------------------------------------------- /spec/lib/store_session_id_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/store_session_id_spec.rb -------------------------------------------------------------------------------- /spec/lib/support/raven/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/support/raven/logger_spec.rb -------------------------------------------------------------------------------- /spec/lib/verify_form_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/verify_form_builder_spec.rb -------------------------------------------------------------------------------- /spec/lib/yaml_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/yaml_loader_spec.rb -------------------------------------------------------------------------------- /spec/lib/zendesk_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/lib/zendesk_client_spec.rb -------------------------------------------------------------------------------- /spec/logger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/logger_helper.rb -------------------------------------------------------------------------------- /spec/mock_piwik_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/mock_piwik_middleware.rb -------------------------------------------------------------------------------- /spec/models/ab_test/ab_test_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/ab_test/ab_test_spec.rb -------------------------------------------------------------------------------- /spec/models/ab_test/experiment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/ab_test/experiment_spec.rb -------------------------------------------------------------------------------- /spec/models/analytics/federation_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/analytics/federation_reporter_spec.rb -------------------------------------------------------------------------------- /spec/models/config_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/config_proxy_spec.rb -------------------------------------------------------------------------------- /spec/models/cycle_three/cycle_three_attribute_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/cycle_three/cycle_three_attribute_generator_spec.rb -------------------------------------------------------------------------------- /spec/models/cycle_three/cycle_three_attribute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/cycle_three/cycle_three_attribute_spec.rb -------------------------------------------------------------------------------- /spec/models/cycle_three_attribute_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/cycle_three_attribute_response_spec.rb -------------------------------------------------------------------------------- /spec/models/display/cycle_three_display_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/cycle_three_display_data_spec.rb -------------------------------------------------------------------------------- /spec/models/display/display_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/display_data_spec.rb -------------------------------------------------------------------------------- /spec/models/display/identity_provider_display_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/identity_provider_display_decorator_spec.rb -------------------------------------------------------------------------------- /spec/models/display/idp_display_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/idp_display_data_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp/display_data_correlator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp/display_data_correlator_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp/service_list_data_correlator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp/service_list_data_correlator_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp/transaction_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp/transaction_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp/transaction_taxon_correlator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp/transaction_taxon_correlator_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp_display_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp_display_data_spec.rb -------------------------------------------------------------------------------- /spec/models/display/rp_display_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/display/rp_display_repository_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/feedback_form_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/feedback_service_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_source_mapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/feedback_source_mapper_spec.rb -------------------------------------------------------------------------------- /spec/models/further_information_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/further_information_service_spec.rb -------------------------------------------------------------------------------- /spec/models/identity_provider_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/identity_provider_request_spec.rb -------------------------------------------------------------------------------- /spec/models/identity_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/identity_provider_spec.rb -------------------------------------------------------------------------------- /spec/models/idp_list_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/idp_list_response_spec.rb -------------------------------------------------------------------------------- /spec/models/matching_outcome_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/matching_outcome_response_spec.rb -------------------------------------------------------------------------------- /spec/models/metadata_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/metadata_client_spec.rb -------------------------------------------------------------------------------- /spec/models/outbound_saml_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/outbound_saml_message_spec.rb -------------------------------------------------------------------------------- /spec/models/policy_proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/policy_proxy_spec.rb -------------------------------------------------------------------------------- /spec/models/publish_hub_config_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/publish_hub_config_client_spec.rb -------------------------------------------------------------------------------- /spec/models/saml_proxy_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/saml_proxy_api_spec.rb -------------------------------------------------------------------------------- /spec/models/select_idp_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/select_idp_response_spec.rb -------------------------------------------------------------------------------- /spec/models/session_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/session_validator_spec.rb -------------------------------------------------------------------------------- /spec/models/will_it_work_for_me_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/models/will_it_work_for_me_form_spec.rb -------------------------------------------------------------------------------- /spec/piwik_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/piwik_test_helper.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/rp_translation_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/services/rp_translation_service_spec.rb -------------------------------------------------------------------------------- /spec/sign_in_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/sign_in_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/authn_request_redirect_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/authn_request_redirect_examples.rb -------------------------------------------------------------------------------- /spec/support/authn_response_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/authn_response_examples.rb -------------------------------------------------------------------------------- /spec/support/cookie_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/cookie_matchers.rb -------------------------------------------------------------------------------- /spec/support/display_data_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/display_data_examples.rb -------------------------------------------------------------------------------- /spec/support/list_size_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/list_size_matcher.rb -------------------------------------------------------------------------------- /spec/support/model_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/model_examples.rb -------------------------------------------------------------------------------- /spec/support/response_processing_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/response_processing_examples.rb -------------------------------------------------------------------------------- /spec/support/select_idp_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/select_idp_examples.rb -------------------------------------------------------------------------------- /spec/support/tracking_cookie_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/tracking_cookie_examples.rb -------------------------------------------------------------------------------- /spec/support/will_it_work_for_me_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/spec/support/will_it_work_for_me_examples.rb -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/startup.sh -------------------------------------------------------------------------------- /stub/ab_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/ab_test.yml -------------------------------------------------------------------------------- /stub/api/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/api/Gemfile -------------------------------------------------------------------------------- /stub/api/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/api/Gemfile.lock -------------------------------------------------------------------------------- /stub/api/stub_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/api/stub_api.rb -------------------------------------------------------------------------------- /stub/api/stub_api_conf.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/api/stub_api_conf.ru -------------------------------------------------------------------------------- /stub/api/stub_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/api/stub_api_spec.rb -------------------------------------------------------------------------------- /stub/attributes/DrivingLicenceNumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/attributes/DrivingLicenceNumber.yml -------------------------------------------------------------------------------- /stub/attributes/NationalInsuranceNumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/attributes/NationalInsuranceNumber.yml -------------------------------------------------------------------------------- /stub/attributes/NullableAttribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/attributes/NullableAttribute.yml -------------------------------------------------------------------------------- /stub/locales/cycle3/DrivingLicenceNumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/cycle3/DrivingLicenceNumber.yml -------------------------------------------------------------------------------- /stub/locales/cycle3/NationalInsuranceNumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/cycle3/NationalInsuranceNumber.yml -------------------------------------------------------------------------------- /stub/locales/cycle3/NullableAttribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/cycle3/NullableAttribute.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-demo-one.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-demo-one.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-demo-two.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-demo-two.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-disconnected.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-disconnected.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-four.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-four.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-loa1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-loa1.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-no-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-no-docs.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-one.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-one.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-three.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-three.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-two.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-two.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-unavailable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-unavailable.yml -------------------------------------------------------------------------------- /stub/locales/idps/stub-idp-zero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/idps/stub-idp-zero.yml -------------------------------------------------------------------------------- /stub/locales/rps/test-rp-non-eidas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/locales/rps/test-rp-non-eidas.yml -------------------------------------------------------------------------------- /stub/relying_parties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/relying_parties.yml -------------------------------------------------------------------------------- /stub/throttling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/stub/throttling.yml -------------------------------------------------------------------------------- /upstart/front.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/upstart/front.conf -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/vendor/assets/javascripts/ga.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/piwik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/verify-frontend/HEAD/vendor/assets/javascripts/piwik.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------