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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="nhsuk-u-reading-width">
<h1 class="nhsuk-heading-xl">@Model.RequestType</h1>
<form class="nhsuk-u-margin-bottom-3" method="post" asp-action="SetRequestSummary" asp-all-route-data="@cancelLinkData">
<vc:text-input asp-for="RequestSubject"
<vc:text-input asp-for="RequestSubject"
label="Enter a summary of your problem or request"
populate-with-current-value="true"
type="text"
Expand All @@ -38,15 +38,17 @@
autocomplete="given-name"
css-class=""
required="true" />
<nhs-form-group nhs-validation-for="RequestDescription">
<vc:text-area asp-for="RequestDescription"
label="Describe your problem or request"
populate-with-current-value="true"
rows="5"
spell-check="false"
hint-text="If you are reporting a problem, please tell us exactly where it occurs and steps to recreate it. If you need to add screenshots, you will be able to do this in the next step."
css-class="html-editor"
character-count="null" />

css-class=""
character-count="null">
</vc:text-area>
</nhs-form-group>
<button class="nhsuk-button" type="submit">Next</button>
</form>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<div id="form-group">
<form method="post" asp-route-ResponseTypes="@Model.RequestTypes" asp-action="setRequestType" asp-all-route-data="@cancelLinkData">
<div>
<nhs-form-group nhs-validation-for="Id">
<fieldset class="nhsuk-fieldset">
<legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--l">
<h1 class="nhsuk-fieldset__heading">
Expand All @@ -54,7 +55,8 @@
seperator = seperator + 1;
}
</div>
</fieldset>
</fieldset>
</nhs-form-group>
<button class="nhsuk-button nhsuk-u-margin-top-6" id="save-button" type="submit">
Next
</button>
Expand Down
Loading