philomena/lib/philomena_web/templates/registration/name/edit.html.slime

18 lines
662 B
Text
Raw Normal View History

h1 Editing Name
= form_for @changeset, Routes.registration_name_path(@conn, :update), [as: :user], fn f ->
= if @changeset.action do
.alert.alert-danger
p Oops, something went wrong! Please check the errors below.
p Enter your new name here. Usernames may only be changed once every 90 days. Please be aware that once you change your name, your previous name will be available for reuse, and someone else may claim it.
.field
= text_input f, :name, class: "input", placeholder: "Name", required: true
= error_tag f, :name
.action
= submit "Save", class: "button"
p = link "Back", to: Routes.pow_registration_path(@conn, :edit)