1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 08:09:38 +02:00
Maybe/app/views/passwords/edit.html.erb
Ricardo Siqueira de Oliveira Leite c8a659694d
Start I18n Internationalization setup (#276)
* start internationalization_setup

* add passwords views translations

* add account views translations

* fix translations

* temporary disable i18n used key
2024-02-06 11:58:17 -06:00

24 lines
547 B
Text

<h1><% t('.title')%></h1>
<%= form_with model: Current.user, url: password_path do |form| %>
<%= auth_messages form %>
<div>
<%= form.label :password_challenge, t('.password_challenge') %>
<%= form.password_field :password_challenge %>
</div>
<div>
<%= form.label :password, t('.password') %>
<%= form.password_field :password %>
</div>
<div>
<%= form.label :password_confirmation %>
<%= form.password_field :password_confirmation %>
</div>
<div>
<%= form.submit t('.submit') %>
</div>
<% end %>