18 lines
486 B
Elixir
18 lines
486 B
Elixir
|
<%= form_for @changeset, @action, fn f -> %>
|
||
|
<%= if @changeset.action do %>
|
||
|
<div class="alert alert-danger">
|
||
|
<p>Oops, something went wrong! Please check the errors below.</p>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<%= label f, :state, class: "control-label" %>
|
||
|
<%= number_input f, :state, class: "form-control" %>
|
||
|
<%= error_tag f, :state %>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<%= submit "Submit", class: "btn btn-primary" %>
|
||
|
</div>
|
||
|
<% end %>
|