##// END OF EJS Templates
Fixed version field on issue view page now links to the corresponding version in the roadmap....
Fixed version field on issue view page now links to the corresponding version in the roadmap. git-svn-id: http://redmine.rubyforge.org/svn/trunk@562 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r397:791077c240f7
r559:2dbb3978184e
Show More
password_recovery.rhtml
21 lines | 753 B | text/html+ruby | RhtmlLexer
/ app / views / account / password_recovery.rhtml
Jean-Philippe Lang
0.3 unstable...
r10 <center>
<div class="box login">
<h2><%=l(:label_password_lost)%></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
Jean-Philippe Lang
0.3 unstable...
r10
<%= error_messages_for 'user' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% form_tag({:token => @token.value}, :class => "tabular") do %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
Jean-Philippe Lang
Added some attributes length validations....
r397 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
<em><%= l(:text_length_between, 4, 12) %></em></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
Jean-Philippe Lang
0.3 unstable...
r10
<p><center><%= submit_tag l(:button_save) %></center></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
0.3 unstable...
r10 </div>
</center>