tracks/app/views/users/change_password.html.erb

16 lines
405 B
Text
Raw Normal View History

<div id="single_box" class="container context">
2011-08-02 17:25:45 +02:00
<h2><%= @page_title %></h2>
<%= error_messages_for 'user' %>
<p><%= t('users.change_password_prompt') %></p>
<% form_tag :action => 'update_password' do %>
2011-08-02 17:25:45 +02:00
<%= render :partial => 'update_password' %>
<br/>
<%= link_to t('common.cancel'), preferences_path %>
<%= submit_tag t('users.change_password_submit') %>
<% end %>
</div>