diff --git a/app/views/devise/registrations/_password_details.html.erb b/app/views/devise/registrations/_password_details.html.erb
index 561f8d7..a5b7937 100644
--- a/app/views/devise/registrations/_password_details.html.erb
+++ b/app/views/devise/registrations/_password_details.html.erb
@@ -5,21 +5,21 @@
<%= hidden_field_tag :skip_personal_details, "true" %>
- <%= f.label(:current_password, _('Current Password'), class: 'required') %>
+ <%= f.label(:current_password, _('Current password'), class: 'required') %>
<%= f.password_field(:current_password, class: 'left-indent required input-medium') %>
- <%= f.label(:password, _('New Password'), class: 'required') %>
+ <%= f.label(:password, _('New password'), class: 'required') %>
<%= f.password_field(:password, class: 'left-indent required input-medium', id: 'user_new_password') %>
- <%= f.label(:password_confirmation, _('Password Confirmation'), class: 'required') %>
+ <%= f.label(:password_confirmation, _('Password confirmation'), class: 'required') %>
<%= f.password_field(:password_confirmation, class: 'left-indent required input-medium') %>
diff --git a/app/views/devise/registrations/_personal_details.html.erb b/app/views/devise/registrations/_personal_details.html.erb
index ee0941f..6a483ba 100644
--- a/app/views/devise/registrations/_personal_details.html.erb
+++ b/app/views/devise/registrations/_personal_details.html.erb
@@ -17,24 +17,24 @@
<%= f.label(:email, _('Email'), class: 'required') %>
- <%= f.email_field(:email, class: 'left-indent required input-medium',
+ <%= f.email_field(:email, class: 'left-indent required input-large',
title: _('Please enter your current password below when changing your email address.'),
value: @user.email) %>
- <%= f.label(:firstname, _('First Name'), class: 'required') %>
+ <%= f.label(:firstname, _('First name'), class: 'required') %>
<%= f.text_field(:firstname, class: 'input-small required left-indent', value: @user.firstname) %>
- <%= f.label(:surname, _('Last Name'), class: 'required') %>
+ <%= f.label(:surname, _('Last name'), class: 'required') %>
<%= f.text_field(:surname, class: 'input-small required left-indent', value: @user.surname) %>
- <%= f.label(:recovery_email, _('Recovery Email'), class: 'required') %>
- <%= f.email_field(:recovery_email, class: 'left-indent required input-medium',
+ <%= f.label(:recovery_email, _('Recovery email'), class: 'required') %>
+ <%= f.email_field(:recovery_email, class: 'left-indent required input-large',
title: _('This email will be used to recover your account if you change institutions'),
value: @user.recovery_email) %>
<%= f.label(:password, _('Password'), class: 'required') %>
- <%= f.password_field(:password, class: 'left-indent required input-medium') %>
+ <%= f.password_field(:password, class: 'left-indent required input-large') %>
@@ -56,14 +56,14 @@
default_selection: @default_org,
models: @orgs,
attribute: 'name',
- classes: 'left-indent input-medium'} %>
+ classes: 'left-indent input-large'} %>
<% other_organisations = Org.where("parent_id IS ? AND is_other = ?", nil, true).pluck(:id) %>
- <%= f.label _('Organisation Name'), for: :other_organisation %>
+ <%= f.label _('Organisation name'), for: :other_organisation %>
<%= f.text_field :other_organisation, :autocomplete => "off", :class => 'left-indent input-medium has-tooltip', 'data-toggle' => "tooltip", 'data-container' => "body", 'title' => _('Please enter the name of your organisation.') %>
@@ -74,7 +74,7 @@
<%= f.label(:language_id, _('Language')) %>
<%= select_tag("user[language_id]",
options_from_collection_for_select(@languages, "id", "name", lang_id),
- class: 'input-small left-indent') %>
+ class: 'input-small') %>
<% end %>
@@ -88,7 +88,7 @@
<% else %>
<%= label_tag(:scheme_name, scheme.name.capitalize ) %>
<% end %>
-
+
<%= render partial: "external_identifier_#{scheme.name}",
locals: { scheme: scheme,
id: current_user.identifier_for(scheme)} %>
@@ -112,7 +112,7 @@
locals: {id: 'update',
val: 'Save',
disabled_initially: true,
- classes: 'small-input-button left-indent',
+ classes: 'small-input-button',
tooltip: _('Enter all of the required information above')} %>
diff --git a/app/views/plans/_edit_details.html.erb b/app/views/plans/_edit_details.html.erb
index fb852a3..6a72d8e 100644
--- a/app/views/plans/_edit_details.html.erb
+++ b/app/views/plans/_edit_details.html.erb
@@ -5,7 +5,7 @@