diff options
author | Lynx Kotoura <lynx@lv9.org> | 2017-09-02 22:49:28 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-02 15:49:28 +0200 |
commit | cfe39fb58d42ef649dc1ebb6f39e77814bbfbe96 (patch) | |
tree | 435d9fd8cb6820a42d8db68bd01ea211110bcca2 /app/views | |
parent | a0294c8880a4fd7ed548e792b78ededa88482ae5 (diff) |
Adjust settings pages (#4765)
* views: Adjust heading positions * Adjust settings pages Adjust label. Adjust tables. Adjust admin/reports/* pages. Fix 2FA QR code style for narrow devices. Widen several pages. Increase contrast. * Remove trailing whitespace
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/auth/registrations/edit.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/registrations/edit.html.haml b/app/views/auth/registrations/edit.html.haml index f016a4883..145f5cd9e 100644 --- a/app/views/auth/registrations/edit.html.haml +++ b/app/views/auth/registrations/edit.html.haml @@ -1,7 +1,7 @@ - content_for :page_title do = t('auth.change_password') -= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| += simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: 'auth_edit' }) do |f| = render 'shared/error_messages', object: resource = f.input :email, placeholder: t('simple_form.labels.defaults.email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.email') } |