diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb index 881b82c8..936890bc 100644 --- a/app/views/devise/registrations/new.html.erb +++ b/app/views/devise/registrations/new.html.erb @@ -1,5 +1,5 @@
-

Sign up

+

Profile Details

<%= form_for('', as: resource_name, html: { class: 'space-y-6' }, url: new_registration_path) do |f| %>
<%= render 'devise/shared/error_messages', resource: %> diff --git a/app/views/devise/registrations/show.html.erb b/app/views/devise/registrations/show.html.erb index 1f69b61f..eaf227f0 100644 --- a/app/views/devise/registrations/show.html.erb +++ b/app/views/devise/registrations/show.html.erb @@ -1,5 +1,5 @@
-

Sign up

+

Create a Free Account

<%= form_for(User.new, html: { class: 'space-y-6' }, url: new_registration_path, method: :get) do |f| %>
diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index 7c33ee23..2e3cbac6 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -38,11 +38,21 @@
<% else %> - <%= link_to new_user_session_path, class: 'font-medium text-lg' do %> - - <%= svg_icon('login', class: 'w-6 h-6') %> - Sign in - - <% end %> +
+ <%= link_to new_user_session_path, class: 'font-medium text-lg' do %> + + <%= svg_icon('login', class: 'w-6 h-6') %> + Sign in + + <% end %> + <% if Docuseal.multitenant? %> + <%= link_to registration_path, class: 'font-medium text-lg' do %> + + <%= svg_icon('user_plus', class: 'w-6 h-6') %> + Try for Free + + <% end %> + <% end %> +
<% end %>