2023-08-06 17:35:16 -07:00
|
|
|
<h2>Settings</h2>
|
2023-08-06 17:26:56 -07:00
|
|
|
|
2024-04-08 04:02:54 -07:00
|
|
|
<%= form_with(model: @auth_user, method: :put, class: "settings-form") do |f| %>
|
2024-04-07 06:40:15 -07:00
|
|
|
<h2>Your info</h2>
|
2024-04-08 04:02:54 -07:00
|
|
|
<%= render "devise/shared/error_messages", resource: @auth_user %>
|
2023-08-06 17:26:56 -07:00
|
|
|
|
2024-04-07 06:40:15 -07:00
|
|
|
<fieldset>
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :name, 'DTI Username' %>
|
|
|
|
<span class="hint">Use this to log in to Dress to Impress!</span>
|
2023-08-06 17:26:56 -07:00
|
|
|
<br />
|
2024-04-07 06:40:15 -07:00
|
|
|
<%= f.text_field :name, autocomplete: "username" %>
|
|
|
|
</div>
|
2023-08-06 17:26:56 -07:00
|
|
|
|
2024-04-07 06:40:15 -07:00
|
|
|
<div class="field">
|
|
|
|
<%= f.label :email %>
|
|
|
|
<span class="hint">This can help you recover your account later.</span>
|
|
|
|
<br />
|
|
|
|
<%= f.email_field :email, autocomplete: "email" %>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :password, "New password" %>
|
|
|
|
<span class="hint">Leave blank if you don't want to change it.</span>
|
|
|
|
<br />
|
|
|
|
<%= f.password_field :password, autocomplete: "new-password" %>
|
|
|
|
<% if @minimum_password_length %>
|
|
|
|
<br />
|
|
|
|
<span class="hint"><%= @minimum_password_length %> characters minimum</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :password_confirmation, "New password confirmation" %><br />
|
|
|
|
<%= f.password_field :password_confirmation, autocomplete: "new-password" %>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :current_password %>
|
|
|
|
<span class="hint">We need your current password to confirm your changes.</span>
|
|
|
|
<br />
|
|
|
|
<%= f.password_field :current_password, autocomplete: "current-password" %>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2023-08-06 17:26:56 -07:00
|
|
|
|
|
|
|
<div class="actions">
|
2024-04-07 06:40:15 -07:00
|
|
|
<%= f.submit "Save changes" %>
|
2023-08-06 17:26:56 -07:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2024-04-08 04:02:54 -07:00
|
|
|
<% if @auth_user.uses_neopass? %>
|
|
|
|
<%= form_with url: user_neopass_connection_path(@auth_user.user),
|
|
|
|
method: :delete, class: "settings-form", data: {
|
2024-04-07 07:52:23 -07:00
|
|
|
turbo_confirm: "Are you sure? Without a NeoPass, you'll need to use " +
|
2024-04-08 04:02:54 -07:00
|
|
|
"your password or your recovery email \"#{@auth_user.email}\" to " +
|
2024-04-07 07:52:23 -07:00
|
|
|
"log in again.\n\nMake sure you have everything all set up first! " +
|
|
|
|
"Otherwise, you might be locked out of this account forever!"
|
|
|
|
} do |form|
|
|
|
|
%>
|
2024-04-07 07:17:33 -07:00
|
|
|
<h2>Your NeoPass</h2>
|
|
|
|
<section class="neopass-info">
|
|
|
|
<strong>
|
|
|
|
NeoPass ID:
|
|
|
|
</strong>
|
2024-04-08 04:02:54 -07:00
|
|
|
<%= @auth_user.neopass_friendly_id %>
|
2024-04-07 07:17:33 -07:00
|
|
|
</section>
|
|
|
|
<section class="neopass-explanation">
|
|
|
|
<p>
|
|
|
|
You can log into your Dress to Impress account with NeoPass, or with
|
|
|
|
your username and password. If you ever lose access to your NeoPass,
|
|
|
|
you can still use "Forgot your password?" to recover your Dress to
|
|
|
|
Impress account, using the Email saved in "Your info".
|
|
|
|
</p>
|
2024-04-08 04:02:54 -07:00
|
|
|
<% if !@auth_user.uses_password? && !@auth_user.email %>
|
2024-04-07 08:27:02 -07:00
|
|
|
<p>
|
|
|
|
You can't remove this NeoPass yet, because you need to either set a
|
|
|
|
password or a recovery email first. (Ideally both!)
|
|
|
|
</p>
|
2024-04-08 04:02:54 -07:00
|
|
|
<% elsif !@auth_user.uses_password? %>
|
2024-04-07 08:27:02 -07:00
|
|
|
<p>
|
|
|
|
Be extra careful here! Your account doesn't have a password set.
|
|
|
|
</p>
|
2024-04-08 04:02:54 -07:00
|
|
|
<% elsif !@auth_user.email? %>
|
2024-04-07 08:27:02 -07:00
|
|
|
<p>
|
|
|
|
Be extra careful here! Your account doesn't have an email set.
|
|
|
|
</p>
|
|
|
|
<% end %>
|
2024-04-07 07:17:33 -07:00
|
|
|
</section>
|
2024-04-07 08:27:02 -07:00
|
|
|
<%= form.submit "Disconnect your NeoPass",
|
2024-04-08 04:02:54 -07:00
|
|
|
disabled: !@auth_user.uses_password? && !@auth_user.email? %>
|
2024-04-07 07:17:33 -07:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2024-04-07 06:40:15 -07:00
|
|
|
<% content_for :stylesheets do %>
|
2024-04-08 04:02:54 -07:00
|
|
|
<%= stylesheet_link_tag "auth_users/edit" %>
|
2024-04-07 06:40:15 -07:00
|
|
|
<% end %>
|