diff --git a/app/views/devise/shared/_select_server.html.erb b/app/views/devise/shared/_select_server.html.erb index 866f0b92..cea25f45 100644 --- a/app/views/devise/shared/_select_server.html.erb +++ b/app/views/devise/shared/_select_server.html.erb @@ -1,10 +1,12 @@
- 🌎 Global + <%= svg_icon 'world', class: 'w-5 h-5' %> + Global - 🇪🇺 Europe + <%= svg_icon 'eu_flag', class: 'w-5 h-5' %> + Europe
diff --git a/app/views/icons/_eu_flag.html.erb b/app/views/icons/_eu_flag.html.erb new file mode 100644 index 00000000..010ba2f7 --- /dev/null +++ b/app/views/icons/_eu_flag.html.erb @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/views/icons/_waving_hand.html.erb b/app/views/icons/_waving_hand.html.erb new file mode 100644 index 00000000..3b5d00b2 --- /dev/null +++ b/app/views/icons/_waving_hand.html.erb @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/views/icons/_world.html.erb b/app/views/icons/_world.html.erb new file mode 100644 index 00000000..01b8a06c --- /dev/null +++ b/app/views/icons/_world.html.erb @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/app/views/invitations/edit.html.erb b/app/views/invitations/edit.html.erb index 6357dec2..6fa973f7 100644 --- a/app/views/invitations/edit.html.erb +++ b/app/views/invitations/edit.html.erb @@ -1,5 +1,8 @@
-

👋 Welcome to <%= Docuseal.product_name %>

+

+ <%= svg_icon('waving_hand', class: 'h-10 w-10') %> + Welcome to <%= Docuseal.product_name %> +

<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, class: 'space-y-6' }) do |f| %>
<%= render 'devise/shared/error_messages', resource: %> diff --git a/app/views/setup/index.html.erb b/app/views/setup/index.html.erb index 2daf7690..dad5a65c 100644 --- a/app/views/setup/index.html.erb +++ b/app/views/setup/index.html.erb @@ -1,5 +1,8 @@
-

Initial Setup 👋

+

+ Initial Setup + <%= svg_icon('waving_hand', class: 'h-10 w-10') %> +

<%= form_for '', html: { class: 'space-y-6' }, url: setup_index_path do |f| %>
<%= fields_for @user do |ff| %>