Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions features/confirmation.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@Confirmation
Feature: Confirmation
Scenario: Confirmation page has no accessibility violations
Given I am logged in
And I have recently submitted my responses
When I go to "/start"
And I click "Continue"
Then I am on "/confirmation"
And there are no accessibility violations
1 change: 1 addition & 0 deletions features/periods_when_you_stopped_smoking.feature
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Feature: Periods when you stopped smoking page
Scenario: Checking responses and changing them
Given I am logged in
And I have answered questions showing I am eligible
And I have answered questions showing I am a current smoker
And I have answered questions showing I have smoked for "10" years
When I go to "/periods-when-you-stopped-smoking"
And I check "Yes"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.nhsuk-panel__title--l .nhsuk-panel__title {
font-size: 2.25rem;
line-height: 1.1666666667;
}
6 changes: 4 additions & 2 deletions lung_cancer_screening/assets/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
// Components that are not in the NHS.UK frontend library
@forward "components/multi_field_input";

@forward 'components/phase_banner';
@forward "components/numbered_lists"
@forward "components/numbered_lists";
@forward "components/panel_title_shim";
@forward "components/phase_banner";

34 changes: 25 additions & 9 deletions lung_cancer_screening/questions/jinja2/confirmation.jinja
Original file line number Diff line number Diff line change
@@ -1,56 +1,72 @@
{% extends 'layout.jinja' %}
{% from "nhsuk/components/panel/macro.jinja" import panel %}
{% from "nhsuk/components/button/macro.jinja" import button %}

{% block pageTitle %}Thank you for testing the online service - NHS{% endblock %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
{{ panel({
"titleText": "Thank you for testing the online service"
"titleText": "Thank you for testing the online service",
"classes": "nhsuk-panel__title--l",
}) }}

<section>
<h2>What happens next</h2>
<p>The online service cannot currently recommend if you need a lung scan.</p>
<p>You will need to complete your questionnaire for NHS lung cancer screening by phone.</p>
<h2 class="nhsuk-heading-m">What happens next</h2>

<p>You will need to complete your NHS lung cancer screening by phone.</p>

<p>Call us on {% include '_phone_number.jinja' %}.</p>

<p>An advisor will ask you similar questions about your medical history and lifestyle.
They will not have access to the answers you have submitted online.
This is because we are testing the online service.</p>

<p>
<strong>Opening hours:</strong><br/>
<strong>Phone lines are open:</strong><br/>
Monday to Friday 8am to 8pm<br/>
Saturdays 8am to 1pm
</p>

<p>If we do not hear from you in 14 days we will call you to complete the questionnaire by phone. If you are unable to answer the phone we will call you back.</p>
<p>If we do not hear from you in 14 days we will call you to complete the questionnaire by phone.
If you are unable to answer the phone we will call you back.</p>

<p>As a thank you for testing the online service we will offer you a £10 voucher after you have completed your phone appointment.</p>
</section>

{% include "_speak_to_a_gp_if.jinja" %}

<section>
<h2>Find your local Stop Smoking Service</h2>
<h2 class="nhsuk-heading-m">Find your local Stop Smoking Service</h2>
<p>Stopping smoking is the single biggest change you can make for your health. <a href="https://www.nhs.uk/better-health/quit-smoking/ready-to-quit-smoking/find-your-local-stop-smoking-service/" target="_blank">Find local services to help you stop smoking.</a></p>
</section>

<section>
<h2>Benefits of stopping smoking</h2>
<h2 class="nhsuk-heading-m">Benefits of stopping smoking</h2>
<p>Stopping smoking is a great way to stay healthy, protect the health of those around you, and enjoy a better quality of life.</p>
</section>

{% include "_when_you_quit_you.jinja" %}

<section>
<h2>It's never too late to stop</h2>
<h2 class="nhsuk-heading-m">It's never too late to stop</h2>
<p>When you stop smoking, your body can repair itself sooner than you might think. It does not matter how old you are, or how long you have smoked.</p>
</section>

{% include "_when_you_stop_smoking_in.jinja" %}
{% include "_to_help_stop_smoking.jinja" %}
{% include "_smoking_anxiety_and_mood.jinja" %}
{% include "_for_free_help_and_support.jinja" %}

<section>
<h2 class="nhsuk-heading-m">Help us improve this service</h2>
<p>Tell us about your experience using this service today.</p>
{{ button({
"text": "Give feedback",
"href": "https://feedback.digital.nhs.uk/jfe/form/SV_6V8dAlFT0sxJnzo"
})}}
</section>
</div>
</div>
{% endblock %}
Loading