legendary-doc-site/apps/app/priv/templates/phx.gen.html/new.html.eex
2020-09-08 09:20:48 -05:00

20 lines
705 B
Elixir

<div class="p-6 mx-auto max-w-2xl">
<div class="flex pb-6">
<div class="w-/12 flex-1 text-4xl">
<h1 class="-mb-2 mt-2"><%= schema.human_singular %></h1>
</div>
<div class="w-/12 text-4xl text-right">
<%%= styled_button_link "Back", to: Routes.<%= schema.route_helper %>_path(@conn, :index)%>
</div>
</div>
<div class="centered row">
<div class="center aligned column">
<%%= changeset_error_block(@changeset) %>
<div class="bg-white shadow rounded px-4 py-6 bg-gray-300">
<%%= render "form.html", Map.put(assigns, :action, Routes.<%= schema.route_helper %>_path(@conn, :create)) %>
</div>
</div>
</div>
</div>
</div>