2019-12-06 01:36:45 +01:00
|
|
|
h1 Updating Profile Description
|
|
|
|
|
2024-04-29 02:55:27 +02:00
|
|
|
= form_for @changeset, ~p"/profiles/#{@user}/description", [method: "put"], fn f ->
|
2019-12-06 01:36:45 +01:00
|
|
|
= if @changeset.action do
|
|
|
|
.alert.alert-danger
|
|
|
|
p Oops, something went wrong! Please check the errors below.
|
|
|
|
|
|
|
|
.block
|
|
|
|
.block__header
|
|
|
|
span.block__header__title Personal Title
|
|
|
|
.block__content
|
|
|
|
.field
|
|
|
|
= text_input f, :personal_title, class: "input input--short", placeholder: "Title"
|
|
|
|
= error_tag f, :personal_title
|
|
|
|
|
|
|
|
.block
|
2021-09-13 01:19:00 +02:00
|
|
|
div
|
2021-09-30 23:56:38 +02:00
|
|
|
= render PhilomenaWeb.MarkdownView, "_input.html", conn: @conn, f: f, action_text: "About Me", placeholder: "Description (up to 10000 characters)", name: :description, required: false
|
2019-12-06 01:36:45 +01:00
|
|
|
|
|
|
|
.block__content.communication-edit__actions
|
2019-12-15 19:04:41 +01:00
|
|
|
=> submit "Update", class: "button"
|