diff --git a/app/javascript/application.scss b/app/javascript/application.scss index c125349d..63ea5369 100644 --- a/app/javascript/application.scss +++ b/app/javascript/application.scss @@ -50,3 +50,7 @@ button[disabled] .enabled { .base-checkbox { @apply checkbox rounded bg-white checkbox-sm no-animation; } + +.base-radio { + @apply radio bg-white radio-sm; +} diff --git a/app/views/email_settings/index.html.erb b/app/views/email_settings/index.html.erb index e6448859..e0cd1fcc 100644 --- a/app/views/email_settings/index.html.erb +++ b/app/views/email_settings/index.html.erb @@ -1,9 +1,12 @@
-
+
<%= render 'shared/settings_nav' %>
-

Email Settings

+

Email SMTP

+

+ Configure your to send emails (TODO) +

<% value = @encrypted_config.value || {} %> <%= form_for @encrypted_config, url: settings_email_index_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %> <%= f.fields_for :value do |ff| %> @@ -32,14 +35,14 @@ <%= ff.email_field :from_email, value: value['from_email'], required: true, class: 'base-input' %>
<% end %> -
-
+
+
<%= f.button button_title, class: 'base-button' %>
<% end %>
-
+
diff --git a/app/views/esign_settings/index.html.erb b/app/views/esign_settings/index.html.erb index aa0cf1fc..8f8d1e5c 100644 --- a/app/views/esign_settings/index.html.erb +++ b/app/views/esign_settings/index.html.erb @@ -5,7 +5,7 @@ <%= form_for '', url: settings_esign_index_path, method: :post do |f| %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 122d6e50..7c6cd5cc 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -15,12 +15,14 @@ <%= render 'shared/navbar' %> <% if flash.present? %> -
-
-
- - <%= flash[:notice] || flash[:alert] %> - × +
+
+
+
+ + <%= flash[:notice] || flash[:alert] %> + × +
diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index d36dbdf7..c695e2c9 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -1,4 +1,4 @@ -
+
DocuSeal @@ -7,7 +7,7 @@ <%= link_to 'Settings', settings_storage_index_path, class: 'font-medium text-lg' %>