<%= @username %>
<%= hidden_field_tag 'username', @username %>
<%= styled_label_tag 'password', User.human_attribute_name(:password) %>
<%= styled_password_field_tag 'password', nil, :size => 25 %>
<%= styled_label_tag 'new_password', User.human_attribute_name(:new_password) %>
<%= styled_password_field_tag 'new_password', nil, :size => 25, data: { 'tooltip-target' => '#new_password_tooltip' }, class: 'advanced-tooltip-trigger'%>
<%= render_password_complexity_tooltip %>
<%= styled_label_tag 'new_password_confirmation', User.human_attribute_name(:password_confirmation) %>
<%= styled_password_field_tag 'new_password_confirmation', nil, data: { 'tooltip-target' => '#confirm_password_tooltip' }, :size => 25, class: 'advanced-tooltip-trigger' %>
<%= I18n.t(:confirm, scope: [:activerecord, :errors, :models, :user, :attributes, :password, :match])%>
<%= I18n.t(:description, scope: [:activerecord, :errors, :models, :user, :attributes, :password, :match])%>