Files
something-erlang/lib/something_erlang_web/templates/user_settings/edit.html.heex
Rüdiger Diedrich 7035fe5b2d something awful login data
all the stuff to add 2 fields to the user object and to access the
logged0in user in a liveview session
2022-07-18 15:16:57 +02:00

80 lines
2.5 KiB
Plaintext

<h1>Settings</h1>
<h3>Change SA data</h3>
<.form let={f} for={@sadata_changeset}
action={Routes.user_settings_path(@conn, :update)}
id="update_sadata">
<%= if @sadata_changeset.action do %>
<div class="alert alert-danger">
<p>Oops, something went wrong! Please check the errors below.</p>
</div>
<% end %>
<%= hidden_input f, :action, name: "action", value: "update_sadata" %>
<%= label f, :bbuserid %>
<%= text_input f, :bbuserid, required: true %>
<%= error_tag f, :bbuserid %>
<%= label f, :bbpassword %>
<%= text_input f, :bbpassword, required: true %>
<%= error_tag f, :bbpassword %>
<div>
<%= submit "Change sadata", class: "btn" %>
</div>
</.form>
<h3>Change email</h3>
<.form let={f} for={@email_changeset} action={Routes.user_settings_path(@conn, :update)} id="update_email">
<%= if @email_changeset.action do %>
<div class="alert alert-danger">
<p>Oops, something went wrong! Please check the errors below.</p>
</div>
<% end %>
<%= hidden_input f, :action, name: "action", value: "update_email" %>
<%= label f, :email %>
<%= email_input f, :email, required: true %>
<%= error_tag f, :email %>
<%= label f, :current_password, for: "current_password_for_email" %>
<%= password_input f, :current_password, required: true, name: "current_password", id: "current_password_for_email" %>
<%= error_tag f, :current_password %>
<div>
<%= submit "Change email", class: "btn" %>
</div>
</.form>
<h3>Change password</h3>
<.form let={f} for={@password_changeset} action={Routes.user_settings_path(@conn, :update)} id="update_password">
<%= if @password_changeset.action do %>
<div class="alert alert-danger">
<p>Oops, something went wrong! Please check the errors below.</p>
</div>
<% end %>
<%= hidden_input f, :action, name: "action", value: "update_password" %>
<%= label f, :password, "New password" %>
<%= password_input f, :password, required: true %>
<%= error_tag f, :password %>
<%= label f, :password_confirmation, "Confirm new password" %>
<%= password_input f, :password_confirmation, required: true %>
<%= error_tag f, :password_confirmation %>
<%= label f, :current_password, for: "current_password_for_password" %>
<%= password_input f, :current_password, required: true, name: "current_password", id: "current_password_for_password" %>
<%= error_tag f, :current_password %>
<div>
<%= submit "Change password", class: "btn" %>
</div>
</.form>