##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13883:c8fb0956d15b
r14351:68620da79ab5
Show More
password.html.erb
24 lines | 918 B | text/plain | TextLexer
/ app / views / my / password.html.erb
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <h2><%=l(:button_change_password)%></h2>
<%= error_messages_for 'user' %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :class => "tabular") do %>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="box">
<p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
<%= password_field_tag 'password', nil, :size => 25 %></p>
<p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <%= password_field_tag 'new_password', nil, :size => 25 %>
<em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842
<p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
</div>
<%= submit_tag l(:button_apply) %>
<% end %>
Jean-Philippe Lang
Code cleanup (#19458)....
r13883 <% unless @user.must_change_password? %>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <% content_for :sidebar do %>
<%= render :partial => 'sidebar' %>
<% end %>
Jean-Philippe Lang
Option to force a user to change his password (#3872)....
r11851 <% end %>