foodsoft/app/views/login/password.html.haml
Benjamin Meichsner f49c6493f4 Removed hard coded links from mailer and views.
* Not tested every mail template. Hopefully everything works ;-)
2010-03-20 14:49:46 +01:00

16 lines
536 B
Text

- title "Neues Passwort"
%p=h "Bitte neues Passwort für #{@user.nick} eingeben."
.edit_form{:style => "width:25em"}
- form_for @user, :url => {:action => 'update_password', :id => @user.id, :token => @user.reset_password_token} do |form|
= form.error_messages :header_message => ""
%p
Neues Passwort
%br/
= form.password_field :password
%p
Passwort wiederholen
%br/
= form.password_field :password_confirmation
= form.submit 'Speichern'
|
= link_to 'Abbrechen', login_path