Packages

Rapid admin generator for Phoenix

Current section

Files

Jump to
lit priv templates eex phx.gen.html form.html.eex
Raw

priv/templates/eex/phx.gen.html/form.html.eex

<%%= form_for @changeset, @action, [multipart: true, id: "lit-form"], fn f -> %>
<fieldset class="lit-panel">
<legend>
<span>Details</span>
</legend>
<%%= if @changeset.action do %>
<p class="lit-form-error">Oops, something went wrong! Please check the errors below.</p>
<%% end %>
<%= for {label, input, error} <- inputs, input do %>
<div class="lit-form-group">
<%= label %>
<%= input %>
<%= error %>
</div>
<% end %>
<div class="lit-submit-form">
<%%= submit "Submit", class: "lit-submit-button" %>
</div>
</fieldset>
<%% end %>