diff options
| author | jpl | 2016-08-05 14:19:18 +0200 |
|---|---|---|
| committer | jpl | 2016-08-05 14:19:28 +0200 |
| commit | b2300ce8ad25424d755b788882dd67c845691de4 (patch) | |
| tree | 5074e584c1cf828c5f58df7835129177807e8d9c /app/views/devise | |
| parent | f3753e4c78c17e096711b186ea9ecb70ed1de4a8 (diff) | |
| download | chouette-core-b2300ce8ad25424d755b788882dd67c845691de4.tar.bz2 | |
Refs #1295: convert erb to slim (devise/passwords fix)
Diffstat (limited to 'app/views/devise')
| -rw-r--r-- | app/views/devise/passwords/edit.html.slim | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/devise/passwords/edit.html.slim b/app/views/devise/passwords/edit.html.slim index c965704fd..864a44499 100644 --- a/app/views/devise/passwords/edit.html.slim +++ b/app/views/devise/passwords/edit.html.slim @@ -4,10 +4,10 @@ .panel-body = simple_form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put, class: "form-horizontal" }) do |f| - = f.input :reset_password_token, as: :hidden - = f.input :password, as: :password - = f.input :password_confirmation, as: :password - - .form-actions - = link_to t("cancel"), unauthenticated_root_path, class: 'btn btn-default' - = f.button :submit, :value => t("devise.passwords.edit.commit"), class: 'btn-info'
\ No newline at end of file + = f.input :reset_password_token, as: :hidden + = f.input :password, as: :password + = f.input :password_confirmation, as: :password + + .form-actions + = link_to t("cancel"), unauthenticated_root_path, class: 'btn btn-default' + = f.button :submit, :value => t("devise.passwords.edit.commit"), class: 'btn-info'
\ No newline at end of file |
