minisome/lib/web/live/posting.html.heex

20 lines
431 B
Text
Raw Permalink Normal View History

<.form let={f} for={@cset} phx-change="change" phx-submit="submit">
<%= label(f, :text, "Post text") %>
<%= textarea(f, :text) %>
<%= error_tag(f, :text) %>
<%= label(f, :tags, "Post tags") %>
<%= textarea(f, :tags) %>
<%= error_tag(f, :tags) %>
<%= submit("Submit") %>
<%= if @created do %>
<hr />
<h4>Created new post</h4>
<Minisome.Web.Components.Post.my post={@created} />
<% end %>
</.form>