diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb index 598d7267..09c51d0c 100644 --- a/app/views/devise/sessions/new.html.erb +++ b/app/views/devise/sessions/new.html.erb @@ -1,6 +1,6 @@
<%= render 'devise/shared/select_server' if Docuseal.multitenant? %> -

Log In

+

Sign In

<%= form_for(resource, as: resource_name, html: { class: 'space-y-6' }, data: { turbo: params[:redir].blank? }, url: session_path(resource_name)) do |f| %> <% if params[:redir].present? %> <%= hidden_field_tag :redir, params[:redir] %> @@ -16,11 +16,11 @@
- <%= f.button button_title(title: 'Log In', disabled_with: 'Logging In'), class: 'base-button' %> + <%= f.button button_title(title: 'Sign In', disabled_with: 'Signing In'), class: 'base-button' %>
<% end %> <% if devise_mapping.omniauthable? %> - <%= button_to button_title(title: 'Log in with Google', icon: svg_icon('brand_google', class: 'w-6 h-6')), omniauth_authorize_path(resource_name, :google_oauth2), class: 'white-button w-full mt-4', data: { turbo: false }, method: :post %> + <%= button_to button_title(title: 'Sign in with Google', icon: svg_icon('brand_google', class: 'w-6 h-6')), omniauth_authorize_path(resource_name, :google_oauth2), class: 'white-button w-full mt-4', data: { turbo: false }, method: :post %> <% end %> <%= render 'devise/shared/links' %> diff --git a/app/views/devise/sessions/otp.html.erb b/app/views/devise/sessions/otp.html.erb index aa661b02..5609374b 100644 --- a/app/views/devise/sessions/otp.html.erb +++ b/app/views/devise/sessions/otp.html.erb @@ -1,5 +1,5 @@
-

Log In

+

Sign In

<%= form_for(resource, as: resource_name, html: { class: 'space-y-6' }, data: { turbo: params[:redir].blank? }, url: session_path(resource_name)) do |f| %> <%= f.hidden_field :email %> <%= f.hidden_field :password %> @@ -13,7 +13,7 @@
- <%= f.button button_title(title: 'Log In', disabled_with: 'Logging In'), class: 'base-button' %> + <%= f.button button_title(title: 'Sign In', disabled_with: 'Signing In'), class: 'base-button' %>
<% end %> diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb index 51e06ed2..659afab1 100644 --- a/app/views/devise/shared/_links.html.erb +++ b/app/views/devise/shared/_links.html.erb @@ -1,6 +1,6 @@
<%- if controller_name != 'sessions' %> - <%= link_to 'Log in', new_session_path(resource_name), class: 'link link-hover' %> + <%= link_to 'Sign in', new_session_path(resource_name), class: 'link link-hover' %> <% end %> <%- if devise_mapping.registerable? && controller_name != 'registrations' %> <%= link_to 'Create free account', registration_path({ redir: params[:redir] }.compact_blank), class: 'link link-hover' %>