debshots/app/views/users/_form.slim
2015-07-15 16:45:45 +02:00

20 lines
424 B
Text

= render "shared/error_messages", :target => @user
p
= form.label :realname
br
= form.text_field :realname
p
= form.label :email
br
= form.text_field :email
p
= form.label :password, form.object.new_record? ? nil : "Change password"
br
= form.password_field :password
p
= form.label :password_confirmation
br
= form.password_field :password_confirmation
= link_to 'Edit Account', edit_account_path