You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
835 B
21 lines
835 B
9 months ago
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-three-quarters-from-desktop">
|
||
9 months ago
|
<%= form_with model: @log, url: request.original_url, method: "post", local: true do |f| %>
|
||
|
<%= f.govuk_error_summary %>
|
||
|
<% end %>
|
||
|
|
||
9 months ago
|
<h1 class="govuk-heading-m govuk-!-margin-bottom-6">
|
||
|
<span class="govuk-grid-column-two-thirds">
|
||
9 months ago
|
Make sure these answers are correct:
|
||
9 months ago
|
</span>
|
||
|
<span class="govuk-body govuk-!-text-align-right govuk-grid-column-one-third">
|
||
9 months ago
|
<%= govuk_link_to "Clear all", lettings_log_confirm_clear_all_answers_path(@log) %>
|
||
9 months ago
|
</span>
|
||
|
</h1>
|
||
|
|
||
|
<%= render CheckAnswersSummaryListCardComponent.new(questions: @questions, log: @log, user: current_user, correcting_hard_validation: true) %>
|
||
|
|
||
|
<%= govuk_button_link_to "Confirm and continue", "/" %>
|
||
|
</div>
|
||
|
</div>
|