forked from potsda.mn/mobilizon
90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
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, :roles, class: "control-label" %>
|
|
<%= number_input f, :roles, class: "form-control" %>
|
|
<%= error_tag f, :roles %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= submit "Submit", class: "btn btn-primary" %>
|
|
</div>
|
|
<% end %>
|