Skip to content

Commit

Permalink
Update confirm delete example to use button group
Browse files Browse the repository at this point in the history
  • Loading branch information
36degrees committed Jan 26, 2021
1 parent c98bd68 commit f85eb47
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/views/full-page-examples/confirm-delete/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
}) }}

<form method="post" novalidate>

{{ govukButton({
text: "Delete account",
classes: "govuk-button--warning govuk-!-margin-right-3"
}) }}

{{ govukButton({
text: "Cancel",
classes: "govuk-button--secondary"
}) }}

<div class="govuk-button-group">
{{ govukButton({
text: "Delete account",
classes: "govuk-button--warning"
}) }}

{{ govukButton({
text: "Cancel",
classes: "govuk-button--secondary"
}) }}
</div>
</form>

</div>
Expand Down

0 comments on commit f85eb47

Please sign in to comment.