deepakvenkat/cash-envelope

View on GitHub
app/views/envelopes/new.html.erb

Summary

Maintainability
Test Coverage
<div class='container envelopes'>
  <%= form_for @envelope  do |f| %>
    <%= f.label :name %>
    <%=  f.text_field :name %>
    <br/>
    <%= f.label :limit %>
    <%=  f.text_field :limit %>
    <br/>
    <%= f.submit 'Create' %>
  <% end %>
</div>