9 lines
260 B
Elixir
Raw Normal View History

2019-03-21 19:21:56 -04:00
<%= form_for @changeset, Routes.group_path(@conn, :create), fn form -> %>
<div class="form-group">
<label for="title">Title</label>
<%= text_input form, :title %>
</div>
<div class="form-group">
<%= submit "Create Group" %>
</div>
<% end %>