* <fixed translation errors>

* <fixed translation errors>

* <fixed translation errors>
This commit is contained in:
John Ma
2018-10-03 14:08:50 -04:00
committed by Jesus Federico
parent 5c281a1a3f
commit 5c3fd15323
4 changed files with 6 additions and 6 deletions

View File

@ -18,13 +18,13 @@
<div class="form-group">
<div class="row">
<div class="col-8">
<%= f.label t("settings.password.old"), class: "form-label" %>
<%= f.label :password, t("settings.password.old"), class: "form-label" %>
<%= f.password_field :password, class: "form-control #{form_is_invalid?(@user, :password)}" %>
<br>
<%= f.label t("settings.password.new"), class: "form-label" %>
<%= f.label :new_password, t("settings.password.new"), class: "form-label" %>
<%= f.password_field :new_password, class: "form-control #{form_is_invalid?(@user, :password)}" %>
<br>
<%= f.label t("settings.password.confirmation"), class: "form-label" %>
<%= f.label :password_confirmation, t("settings.password.confirmation"), class: "form-label" %>
<%= f.password_field :password_confirmation, class: "form-control #{form_is_invalid?(@user, :password_confirmation)}" %>
</div>
</div>