2009-02-06 20:51:14 +01:00
|
|
|
- title "Neues Passwort"
|
|
|
|
%p=h "Bitte neues Passwort für #{@user.nick} eingeben."
|
2012-08-24 11:11:40 +02:00
|
|
|
= simple_form_for @user, :url => {:action => 'update_password', :id => @user.id, :token => @user.reset_password_token} do |form|
|
|
|
|
= form.input :password
|
|
|
|
= form.input :password_confirmation
|
2012-10-08 11:51:56 +02:00
|
|
|
.form-actions
|
|
|
|
= form.submit 'Neues Passwort speichern', class: 'btn'
|