diff --git a/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml b/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml index 363397cc2e..ff4d148c8f 100644 --- a/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml +++ b/src/Employer/Employer.Web/Views/Part1/Training/TrainingHelp.cshtml @@ -21,6 +21,9 @@

Find apprenticeship training - Return to dashboard + +
+ Return to dashboard +
diff --git a/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml b/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml index b6fb48a391..a666479837 100644 --- a/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Considerations/Considerations.cshtml @@ -18,7 +18,7 @@
- For example, if the vacancy will involve working outdoors, or lifting heavy objects + For example, the apprenticeship will involve working outdoors or lifting heavy objects. 350 @@ -26,7 +26,9 @@
- Cancel +

+ Cancel +

diff --git a/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml b/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml index fb58ec010c..d2ab7203d4 100644 --- a/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/EmployerContactDetails/EmployerContactDetails.cshtml @@ -31,7 +31,10 @@
- Cancel + +
+ Cancel +
diff --git a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml index 48515e30ca..5aad1bd0e5 100644 --- a/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml +++ b/src/Employer/Employer.Web/Views/Part2/Qualifications/Qualifications.cshtml @@ -24,37 +24,38 @@ { var qualification = Model.Qualifications[i]; - - - - @qualification.QualificationType in @qualification.Subject - - - - @qualification.Grade - - - - @qualification.Weighting.GetDisplayName() - - -
- - -
- Edit - - + + + + @qualification.QualificationType in @qualification.Subject + + + + @qualification.Grade + + + + @qualification.Weighting.GetDisplayName() + + +
+ + +
+ Edit + + } -

- Add another qualification -

-
- Preview + Add another qualification + +
+ Preview advert +
+ \ No newline at end of file diff --git a/src/Shared/Recruit.Vacancies.Client/Application/Validation/Fluent/ContactDetailValidator.cs b/src/Shared/Recruit.Vacancies.Client/Application/Validation/Fluent/ContactDetailValidator.cs index 403a4f1af6..5b5fddcbe7 100644 --- a/src/Shared/Recruit.Vacancies.Client/Application/Validation/Fluent/ContactDetailValidator.cs +++ b/src/Shared/Recruit.Vacancies.Client/Application/Validation/Fluent/ContactDetailValidator.cs @@ -16,7 +16,7 @@ internal ContactDetailValidator(long ruleId, IProfanityListProvider profanityLis .WithMessage("Contact name contains some invalid characters") .WithErrorCode("91") .ProfanityCheck(profanityListProvider) - .WithMessage("Contact name must not contain a banned word or phrase.") + .WithMessage("Contact name must not contain a banned word or phrase") .WithErrorCode("615") .WithRuleId(ruleId); @@ -32,7 +32,7 @@ internal ContactDetailValidator(long ruleId, IProfanityListProvider profanityLis .WithErrorCode("94") .When(v => !string.IsNullOrEmpty(v.Email)) .ProfanityCheck(profanityListProvider) - .WithMessage("Email address must not contain a banned word or phrase.") + .WithMessage("Email address must not contain a banned word or phrase") .WithErrorCode("616") .WithRuleId(ruleId);