%= form_for @changeset, @action, fn f -> %>
<%= if @changeset.action do %>
<%= gettext "Oops, something went wrong! Please check the errors below." %>
<% end %>
<%= label f, :board, class: "control-label" %>
<%= text_input f, :board, class: "form-control" %>
<%= error_tag f, :board %>
<%= submit gettext("Submit"), class: "btn btn-primary" %>
<% end %>