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

18 lines
621 B
Text
Raw Normal View History

h1 Editing Name
2024-06-06 22:28:35 +02:00
= form_for @changeset, ~p"/registrations/name", [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"
2024-06-06 22:28:35 +02:00
p = link "Back", to: ~p"/registrations/edit"