mirror of
https://github.com/fluent/fluentd-ui.git
synced 2026-05-16 00:06:10 +02:00
26 lines
747 B
Plaintext
26 lines
747 B
Plaintext
- page_title t('.page_title')
|
|
|
|
|
|
|
|
.col-xs-6
|
|
- if notice
|
|
.alert.alert-success= notice
|
|
- else
|
|
- @user.errors.full_messages.each do |e|
|
|
.alert.alert-danger= e
|
|
|
|
= form_for(:user, url: user_path, method: :patch) do |f|
|
|
.form-group
|
|
= f.label :name
|
|
= f.text_field :name, class: "form-control", disabled: true
|
|
.form-group
|
|
= f.label :current_password
|
|
= f.password_field :current_password, class: "form-control"
|
|
.form-group
|
|
= f.label :password
|
|
= f.password_field :password, class: "form-control"
|
|
.form-group
|
|
= f.label :password_confirmation
|
|
= f.password_field :password_confirmation, class: "form-control"
|
|
= f.submit t("terms.update_password"), class: "btn btn-primary"
|