From f7e48ad3a629baca28e28c276756c9960849ed90 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 3 Dec 2020 14:47:57 +0100 Subject: [PATCH] Accept non-existing terms Legal how does it work --- app/assets/stylesheets/forms.scss | 7 +++++++ app/views/signup/steps.html.erb | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/forms.scss b/app/assets/stylesheets/forms.scss index 64fcb0b..e8afb30 100644 --- a/app/assets/stylesheets/forms.scss +++ b/app/assets/stylesheets/forms.scss @@ -25,4 +25,11 @@ form { .actions { margin-top: 2rem; } + + .accept-terms { + margin-top: 2rem; + font-size: 0.85rem; + line-height: 1.5em; + color: #888; + } } diff --git a/app/views/signup/steps.html.erb b/app/views/signup/steps.html.erb index 107ed5a..3c527f4 100644 --- a/app/views/signup/steps.html.erb +++ b/app/views/signup/steps.html.erb @@ -48,8 +48,14 @@

Password <%= @validation_error %>

<% end %> +

+ + By clicking the button below, you accept our future Terms of Service + and Privacy Policy. Don't worry, they will be excellent! + +

-

<%= f.submit "Continue" %>

+

<%= f.submit "Create account" %>

<% end %> <% end %>