مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
56 أسطر
2.5 KiB
Plaintext
56 أسطر
2.5 KiB
Plaintext
- page_title << "My Settings"
|
|
.pageHeader
|
|
%h1.pageHeader__title
|
|
My Settings
|
|
.pageContent.pageContent--compact
|
|
= form_for @user, :url => settings_path, :remote => true do |f|
|
|
= f.error_messages
|
|
%fieldset.fieldSet
|
|
.fieldSet__field
|
|
= label_tag :password, 'Your Password', :class => 'fieldSet__label'
|
|
.fieldSet__input
|
|
= password_field_tag :password, params[:password], :autofocus => @password_correct.nil?, :disabled => @password_correct, :class => 'input input--text', :placeholder => "Enter your current password to change your details"
|
|
- if @password_correct
|
|
= hidden_field_tag :password, params[:password]
|
|
%p.fieldSet__text
|
|
In order to protect your account, you need to enter your current password in the field above
|
|
to authenticate the change of your details.
|
|
|
|
.fieldSet__title
|
|
Your details
|
|
|
|
.fieldSet__field
|
|
= f.label :first_name, "Name", :class => 'fieldSet__label'
|
|
.fieldSet__input
|
|
.inputPair
|
|
= f.text_field :first_name, :class => 'input input--text', :autofocus => @password_correct
|
|
= f.text_field :last_name, :class => 'input input--text'
|
|
.fieldSet__field
|
|
= f.label :email_address, :class => 'fieldSet__label'
|
|
.fieldSet__input
|
|
= f.text_field :email_address, :class => 'input input--text'
|
|
%p.fieldSet__text
|
|
If you change your e-mail address, you'll need to verify that you own the new one before
|
|
you can continue using your account.
|
|
|
|
.fieldSet__field
|
|
= f.label :time_zone, :class => 'fieldSet__label'
|
|
.fieldSet__input
|
|
= f.time_zone_select :time_zone, [], {}, :class => 'input input--select'
|
|
%p.fieldSet__text
|
|
Choose the time zone that you'd like times to be displayed to you when you use our
|
|
web interface. By default, times are displayed in UTC.
|
|
|
|
.fieldSet__title
|
|
Change your password?
|
|
.fieldSet__field
|
|
= f.label :password, "New Password", :class => 'fieldSet__label'
|
|
.fieldSet__input
|
|
.inputPair
|
|
= f.password_field :password, :class => 'input input--text', :placeholder => "•••••••••••", :value => @user.password
|
|
= f.password_field :password_confirmation, :class => 'input input--text', :placeholder => "and confirm it", :value => @user.password_confirmation
|
|
|
|
|
|
%p.fieldSetSubmit.buttonSet
|
|
= f.submit "Save Settings", :class => 'button button--positive js-form-submit'
|