annotate .svn/pristine/6e/6edddd93286b4a8ad759793418d47dea3b07191a.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
rev   line source
Chris@1295 1 <h2><%=l(:button_change_password)%></h2>
Chris@1295 2
Chris@1295 3 <%= error_messages_for 'user' %>
Chris@1295 4
Chris@1295 5 <%= form_tag({}, :class => "tabular") do %>
Chris@1295 6 <div class="box">
Chris@1295 7 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
Chris@1295 8 <%= password_field_tag 'password', nil, :size => 25 %></p>
Chris@1295 9
Chris@1295 10 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
Chris@1295 11 <%= password_field_tag 'new_password', nil, :size => 25 %>
Chris@1295 12 <em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
Chris@1295 13
Chris@1295 14 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
Chris@1295 15 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
Chris@1295 16 </div>
Chris@1295 17 <%= submit_tag l(:button_apply) %>
Chris@1295 18 <% end %>
Chris@1295 19
Chris@1295 20 <% content_for :sidebar do %>
Chris@1295 21 <%= render :partial => 'sidebar' %>
Chris@1295 22 <% end %>