diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb index dd54dce0..3282fbda 100644 --- a/app/views/devise/passwords/edit.html.erb +++ b/app/views/devise/passwords/edit.html.erb @@ -1,20 +1,26 @@ -

Change your password

-<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> - <%= render 'devise/shared/error_messages', resource: %> - <%= f.hidden_field :reset_password_token %> -
- <%= f.label :password, 'New password' %>
- <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum)
- <% end %> - <%= f.password_field :password, autofocus: true, autocomplete: 'new-password' %> -
-
- <%= f.label :password_confirmation, 'Confirm new password' %>
- <%= f.password_field :password_confirmation, autocomplete: 'new-password' %> -
-
- <%= f.submit 'Change my password' %> -
-<% end %> -<%= render 'devise/shared/links' %> +
+

Change your password

+ <%= 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: resource %> + <%= f.hidden_field :reset_password_token %> +
+ <%= f.label :password, 'New password', class: 'label' %> + <%= f.password_field :password, autofocus: true, autocomplete: 'new-password', class: 'base-input' %> + <% if @minimum_password_length %> + + <% end %> +
+
+ <%= f.label :password_confirmation, 'Confirm new password', class: 'label' %> + <%= f.password_field :password_confirmation, autocomplete: 'new-password', class: 'base-input' %> +
+
+
+ <%= f.submit 'Change my password', class: 'base-button' %> +
+ <%= render 'devise/shared/links' %> + <% end %> +