annotate app/views/my/.svn/text-base/password.rhtml.svn-base @ 904:0a8317a50fa0 redmine-1.1

Close obsolete branch redmine-1.1
author Chris Cannam
date Fri, 14 Jan 2011 12:53:21 +0000
parents 513646585e45
children
rev   line source
Chris@0 1 <h2><%=l(:button_change_password)%></h2>
Chris@0 2
Chris@0 3 <%= error_messages_for 'user' %>
Chris@0 4
Chris@0 5 <% form_tag({}, :class => "tabular") do %>
Chris@0 6 <div class="box">
Chris@0 7 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
Chris@0 8 <%= password_field_tag 'password', nil, :size => 25 %></p>
Chris@0 9
Chris@0 10 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
Chris@0 11 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
Chris@0 12 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
Chris@0 13
Chris@0 14 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
Chris@0 15 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
Chris@0 16 </div>
Chris@0 17 <%= submit_tag l(:button_apply) %>
Chris@0 18 <% end %>
Chris@0 19
Chris@0 20 <% content_for :sidebar do %>
Chris@0 21 <%= render :partial => 'sidebar' %>
Chris@0 22 <% end %>