adopt-a-hydrant/app/views/users/edit.html.haml

35 lines
1.6 KiB
Plaintext
Raw Normal View History

2011-05-08 08:29:21 +00:00
= form_for resource, :as => resource_name, :url => registration_path(resource_name), :html => {:id => "edit_form", :method => :put} do |f|
%h2
= t("titles.edit_profile")
2011-05-08 08:29:21 +00:00
= f.hidden_field "id"
= f.label "email", t("labels.email"), :id => "user_email_label"
%em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
2011-05-08 08:29:21 +00:00
= f.text_field "email", :tabindex => 1
= f.label "name", t("labels.name"), :id => "user_name_label"
%em
= t("captions.public")
2011-05-08 08:29:21 +00:00
= f.text_field "name", :tabindex => 2
= f.label "organization", t("labels.organization"), :id => "user_organization_label"
%em
= t("captions.public")
2011-05-08 08:29:21 +00:00
= f.text_field "organization", :tabindex => 3
= f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label"
%em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
2011-05-08 08:29:21 +00:00
= f.text_field "voice_number", :tabindex => 4
= f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label"
%em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
2011-05-08 08:29:21 +00:00
= f.text_field "sms_number", :tabindex => 5
= f.label "password", t("labels.password_new"), :id => "user_password_label"
2011-05-08 08:29:21 +00:00
%em
= t("captions.password")
2011-05-08 08:29:21 +00:00
= f.password_field "password", :tabindex => 6
2011-09-15 01:23:56 +00:00
= f.label "current_password", t("labels.current_password"), :id => "user_current_password_label"
2011-05-08 08:29:21 +00:00
%em
= t("captions.current_password")
2011-05-08 08:29:21 +00:00
= f.password_field "current_password", :tabindex => 7
= f.submit t("buttons.update"), :tabindex => 8
2011-05-08 08:29:21 +00:00
= render :partial => 'hydrants/back'