Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CON-3845 Make submission pages consistent #986

Merged
Merged
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
41 changes: 18 additions & 23 deletions src/Employer/Employer.Web/Views/Submitted/Confirmation.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,37 @@
ViewBag.Title = "Advert submitted for approval";
}

<h1 class="govuk-heading-l">@Model.Title</h1>

<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<div asp-hide="@Model.IsResubmit" class="govuk-panel govuk-panel--confirmation">
<h1 class="govuk-panel__title">
Advert submitted for approval
<div class="govuk-panel govuk-panel--confirmation">
<h1 asp-hide="@Model.IsResubmit" class="govuk-panel__title">
Advert submitted to ESFA
</h1>
<h1 asp-show="@Model.IsResubmit" class="govuk-panel__title">
Advert resubmitted to ESFA
</h1>
<div class="govuk-panel__body">
<p asp-show="@Model.HasVacancyReference">
The advert reference number is <br>
Your reference number is <br>
<strong class="govuk-!-font-weight-bold">VAC@(Model.VacancyReference)</strong>
</p>
</div>
</div>
<div asp-show="@Model.IsResubmit" class="govuk-panel govuk-panel--confirmation">
<h1 class="govuk-panel__title">
Advert resubmitted for approval
</h1>
</div>

<h2 class="govuk-heading-m">What happens next</h2>
<div asp-show="@Model.HasNotificationsSet">
<p class="govuk-body">We’ll check the advert within one working day and let you know by email if you need to make any edits. <esfaFeatureEnabled name="@FeatureNames.SetNotificationPreferences"><a asp-route="@RouteNames.ManageNotifications_Get" class="govuk-link">Manage your emails</a>.</esfaFeatureEnabled></p>
<p class="govuk-body">When we approve your advert, it will appear on the <a href="@ExternalLinks.Value.FindAnApprenticeshipUrl" class="govuk-link" target="_blank">​Find an apprenticeship service (opens in a new tab or window)</a>.</p>
<p class="govuk-body">The ESFA will check the advert and let you know by email, within one working day, if you need to make any edits.</p>
</div>
<div asp-hide="@Model.HasNotificationsSet">
<p class="govuk-body">We’ll check the advert within one working day and tell you on the dashboard if you need to make any edits. <esfaFeatureEnabled name="@FeatureNames.SetNotificationPreferences">You can <a asp-route="@RouteNames.ManageNotifications_Get" class="govuk-link">manage your emails</a> if you’d also like to get an email.</esfaFeatureEnabled></p>
<p class="govuk-body">When we approve your advert, it will appear on the <a href="@ExternalLinks.Value.FindAnApprenticeshipUrl" class="govuk-link" target="_blank">​Find an apprenticeship service (opens in a new tab or window)</a>.</p>
</div>
<div class="govuk-form-group inline">
<div class="govuk-form-group">
<a asp-route="@RouteNames.CreateVacancyOptions_Get" class="govuk-button">Create another advert</a>
<p class="govuk-body">
<a asp-route="@RouteNames.Dashboard_Get" class="govuk-link">Return to dashboard</a>
</p>
</div>
<p class="govuk-body">The ESFA will check the advert and will tell you within one working day, on the Recruitment dashboard within rejected adverts, if you need to make any edits.</p>
</div>
<p class="govuk-body"><esfaFeatureEnabled name="@FeatureNames.SetNotificationPreferences"><a asp-route="@RouteNames.ManageNotifications_Get" class="govuk-link">Manage the frequency of your recruitment emails</a>.</esfaFeatureEnabled></p>
<p class="govuk-body">When the advert is approved, it will appear on <a href="@ExternalLinks.Value.FindAnApprenticeshipUrl" class="govuk-link" target="_blank">​Find an apprenticeship (opens in a new tab)</a>.</p>
<p class="govuk-body">
<a asp-route="@RouteNames.Dashboard_Get" class="govuk-link">Return to dashboard</a>
</p>
<p class="govuk-body">
<a asp-route="@RouteNames.CreateVacancyOptions_Get" class="govuk-link">Create another advert</a>
</p>
</div>
</div>