You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

account_information.html.erb 412B

12345678910111213
  1. <% if @user.auth_source %>
  2. <p><%= l(:mail_body_account_information_external, h(@user.auth_source.name)) %></p>
  3. <% else %>
  4. <p><%= l(:mail_body_account_information) %>:</p>
  5. <ul>
  6. <li><%= l(:field_login) %>: <%= @user.login %></li>
  7. <% if @password %>
  8. <li><%= l(:field_password) %>: <%= @password %></li>
  9. <% end %>
  10. </ul>
  11. <% end %>
  12. <p><%= l(:label_login) %>: <%= link_to @login_url, @login_url %></p>