25 lines
446 B
Plaintext
25 lines
446 B
Plaintext
|
<div>
|
||
|
<h2><%= @title %></h2>
|
||
|
|
||
|
<.form
|
||
|
let={f}
|
||
|
for={@changeset}
|
||
|
id="post-form"
|
||
|
phx-target={@myself}
|
||
|
phx-change="validate"
|
||
|
phx-submit="save">
|
||
|
|
||
|
<%= label f, :title %>
|
||
|
<%= textarea f, :title %>
|
||
|
<%= error_tag f, :title %>
|
||
|
|
||
|
<%= label f, :body %>
|
||
|
<%= textarea f, :body %>
|
||
|
<%= error_tag f, :body %>
|
||
|
|
||
|
<div>
|
||
|
<%= submit "Save", phx_disable_with: "Saving..." %>
|
||
|
</div>
|
||
|
</.form>
|
||
|
</div>
|