From d67d0b4dc93dbc21437120eb349fb8a7ec05e69f Mon Sep 17 00:00:00 2001 From: Nick Taylor Date: Mon, 13 Dec 2021 10:30:53 -0500 Subject: [PATCH] Made Creator Settings Checkboxes Accessible (#15735) --- app/views/admin/creator_settings/_form.html.erb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/views/admin/creator_settings/_form.html.erb b/app/views/admin/creator_settings/_form.html.erb index 0024abef4..79278f3ce 100644 --- a/app/views/admin/creator_settings/_form.html.erb +++ b/app/views/admin/creator_settings/_form.html.erb @@ -76,11 +76,15 @@

You will have the opportunity to establish the Code of Conduct and Terms and Conditions for the users of your Forem during the setup process.

<%= f.check_box :checked_code_of_conduct, class: "crayons-checkbox", required: true %> - + <%= f.label :checked_code_of_conduct do %> + I agree to uphold our Code of Conduct. + <% end %>
<%= f.check_box :checked_terms_and_conditions, class: "crayons-checkbox", required: true %> - + <%= f.label :checked_terms_and_conditions do %> + I agree to our Terms and Conditions. + <% end %>