frenzy/lib/frenzy_web/templates/group/new.html.eex

9 lines
260 B
Elixir
Raw Normal View History

2019-03-21 23:21:56 +00: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 %>