<%= additional_emails_link(@user) %> <%= link_to(l(:button_change_password), {:action => 'password'}, :class => 'icon icon-passwd') if @user.change_password_allowed? %> <%= call_hook(:view_my_account_contextual, :user => @user)%>

<%= avatar_edit_link(@user, :size => "50") %> <%=l(:label_my_account)%>

<%= error_messages_for 'user' %> <%= labelled_form_for :user, @user, :url => { :action => "account" }, :html => { :id => 'my_account_form', :method => :put, :multipart => true } do |f| %>
<%=l(:label_information_plural)%>

<%= f.text_field :firstname, :required => true %>

<%= f.text_field :lastname, :required => true %>

<%= f.text_field :mail, :required => true %>

<% unless @user.force_default_language? %>

<%= f.select :language, lang_options_for_select %>

<% end %> <% if Setting.twofa? -%>

<% if @user.twofa_active? %> <%=l 'twofa_currently_active', twofa_scheme_name: l("twofa__#{@user.twofa_scheme}__name") -%>
<%= link_to l('button_disable'), { controller: 'twofa', action: 'deactivate_init', scheme: @user.twofa_scheme }, method: :post -%>
<%= link_to l('twofa_generate_backup_codes'), { controller: 'twofa_backup_codes', action: 'init' }, method: :post, data: { confirm: Redmine::Twofa.for_user(User.current).backup_codes.any? ? t('twofa_text_generate_backup_codes_confirmation') : nil } -%> <% else %> <% Redmine::Twofa.available_schemes.each do |s| %> <%= link_to l("twofa__#{s}__label_activate"), { controller: 'twofa', action: 'activate_init', scheme: s }, method: :post -%>
<% end %> <% end %>

<% end -%> <% @user.custom_field_values.select(&:editable?).each do |value| %>

<%= custom_field_tag_with_label :user, value %>

<% end %> <%= call_hook(:view_my_account, :user => @user, :form => f) %>

<%= submit_tag l(:button_save) %>

<%=l(:field_mail_notification)%> <%= render :partial => 'users/mail_notifications' %>
<%=l(:label_auto_watch_on)%> <%= render :partial => 'users/auto_watch_on' %>
<%=l(:label_preferences)%> <%= render :partial => 'users/preferences' %> <%= call_hook(:view_my_account_preferences, :user => @user, :form => f) %>

<%= submit_tag l(:button_save) %>

<% end %> <% content_for :sidebar do %> <%= render :partial => 'sidebar' %> <% end %> <% html_title(l(:label_my_account)) -%>