Skip to content

Commit 5fad0fa

Browse files
Content changes to Eligibility Questions (#276)
1 parent 831f1fc commit 5fad0fa

File tree

5 files changed

+27
-24
lines changed

5 files changed

+27
-24
lines changed

HNTAS/HNTAS.Web.UI/Views/HeatNetworkEligibility/AreYouTheRP.cshtml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,19 @@
1515
new Question
1616
{
1717
QId = elementId,
18-
QText = "Are you the responsible person for the organisation?",
19-
QDescText = "This person is usually one of the directors legally accountable for meeting Heat Network Technical Assurance Scheme (HNTAS) requirements.",
18+
QText = "Responsible Party",
19+
QDescText =
20+
@"
21+
<p class='govuk-body'>You are responsible if you have overall accountability for heat networks at an organisational level.</p>
22+
23+
<p class='govuk-body'>This is usually a director, trustee, or someone who reports or belongs to a senior leadership group. This group is known as the Responsible Party.</p>
24+
25+
<p class='govuk-body'>You will have the authority to delegate responsibility to individuals leading or contributing to one or more heat networks.</p>
26+
27+
<p class='govuk-body'>Those delegates can then bring in network specialists as required.</p>
28+
29+
<h2 class='govuk-heading-m'>Are you responsible for heat networks in your organisation?</h2>
30+
",
2031
QHintText = null,
2132
Options = new List<Option>
2233
{
@@ -31,7 +42,7 @@
3142

3243
<div class="govuk-width-container">
3344
<div class="govuk-grid-row">
34-
<div class="govuk-grid-column-two-thirds">
45+
<div class="govuk-grid-column-two-thirds">
3546
@await Html.PartialAsync("_QuestionWithRadiobuttons", pageData)
3647
</div>
3748
</div>

HNTAS/HNTAS.Web.UI/Views/HeatNetworkEligibility/HowManyDwellingsIncluded.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
new Question
1616
{
1717
QId = elementId,
18-
QText = "Do any of your new heat networks have 10 or more dwellings?",
19-
QDescText = "This includes houses, flats or units connected to the same heat network.",
20-
QHintText = null,
18+
QText = "Do any of your new heat networks have the equivalent of 10 or more dwellings?",
19+
QDescText = null,
20+
QHintText = "This applies to domestic, non-domestic or mixed-use networks.",
2121
Options = new List<Option>
2222
{
2323
new Option { OptId = $"{elementId}", OptValue = "yes", OptText = "Yes", OptHintText = null },

HNTAS/HNTAS.Web.UI/Views/HeatNetworkEligibility/IsHNLocatedInEnglandScotlandWales.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
{
1717
QId = elementId,
1818
QText = "Are any of your new heat networks in England, Scotland or Wales?",
19-
QDescText = "Heat networks in <strong>Northern Ireland</strong> are exempt from HNTAS, so you do not need to use this service.",
20-
QHintText = null,
19+
QDescText = null,
20+
QHintText = "Heat networks in Northern Ireland are currently exempt from HNTAS. You do not need to use this service for them.",
2121
Options = new List<Option>
2222
{
2323
new Option { OptId = $"{elementId}", OptValue = "yes", OptText = "Yes", OptHintText = null },

HNTAS/HNTAS.Web.UI/Views/HeatNetworkEligibility/IsYourOrgWorkingOnANewHN.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
QId = elementId,
1818
QText = "Is your organisation working on any new heat networks that are not yet operational?",
1919
QDescText = null,
20-
QHintText = null,
20+
QHintText = "This includes any new heat networks across your organisation's portfolio that are in feasibility, design or construction.",
2121
Options = new List<Option>
2222
{
23-
new Option { OptId = $"{elementId}", OptValue = "yes", OptText = "Yes", OptHintText = "Feasibility, design or construction phase." },
23+
new Option { OptId = $"{elementId}", OptValue = "yes", OptText = "Yes", OptHintText = null },
2424
new Option { OptId = $"{elementId}-2", OptValue = "no", OptText = "No", OptHintText = null }
2525
},
2626
SeletedOption = Model.IsYourOrgWorkingOnANewHN

HNTAS/HNTAS.Web.UI/Views/HeatNetworkEligibility/YouAreEligible.cshtml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,21 @@
66
<div class="govuk-grid-row">
77
<div class="govuk-grid-column-two-thirds">
88
<h1 class="govuk-heading-l">
9-
You are eligible for this service
9+
You can use this service
1010
</h1>
1111
<p class="govuk-body">
12-
To continue, you’ll need to sign in or create a GOV.UK One Login account.
12+
Based on your answers, your organisation can use this service to register your heat networks with HNTAS.
1313
</p>
1414
<p class="govuk-body">
15-
One Login is a central service for accessing government services online – you only need one account and password. We advise you use your company email address when registering.
15+
To continue, you'll need to sign in or create a GOV.UK One Login account. One Login is a central service for accessing government services online – you only need one account and password. We advise you use your organisation email address when registering.
1616
</p>
1717

1818
<p class="govuk-body">
19-
Once signed in, you can:
20-
</p>
21-
<ol class="govuk-list">
22-
<li>
23-
Register your organisation
24-
</li>
25-
<li>
26-
Begin registering your heat networks that are in development
27-
</li>
28-
</ol>
19+
Once signed in you can register your organisation and start registering networks for certification.
20+
</p>
2921
<div class="app-button-wrapper">
3022
<button class="govuk-button" type="button" data-module="govuk-button" draggable="false" onclick="location.href='@Url.Action("Index", "Home")'">
31-
Continue to GOV.UK One Login
23+
Continue to GOV UK One Login
3224
</button>
3325
</div>
3426
</div>

0 commit comments

Comments
 (0)