90d33c3e51
* notification on any event on all his projects * notification on any event on selected projects only (if the user belongs to more than 1 project) * notification only for things that he watches or he is involded in (eg. issues that he watches or he is author or assignee) git-svn-id: http://redmine.rubyforge.org/svn/trunk@855 e93f8b46-1217-0410-a6f0-8f06a7374b81
23 lines
824 B
Plaintext
23 lines
824 B
Plaintext
<h2><%=l(:button_change_password)%></h2>
|
|
|
|
<%= error_messages_for 'user' %>
|
|
|
|
<% form_tag({}, :class => "tabular") do %>
|
|
<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>
|
|
<%= password_field_tag 'new_password', nil, :size => 25 %><br />
|
|
<em><%= l(:text_length_between, 4, 12) %></em></p>
|
|
|
|
<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 %>
|
|
|
|
<% content_for :sidebar do %>
|
|
<%= render :partial => 'sidebar' %>
|
|
<% end %>
|