Contract-Signer/app/views/contracts/edit.html.erb
2011-09-28 03:37:39 -07:00

25 lines
473 B
Plaintext

<h1>Editing contract</h1>
<% form_for(@contract) do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :boilerplate %><br />
<%= f.text_field :boilerplate %>
</p>
<p>
<%= f.label :signature %><br />
<%= f.text_field :signature %>
</p>
<p>
<%= f.label :signinghash %><br />
<%= f.text_field :signinghash %>
</p>
<p>
<%= f.submit 'Update' %>
</p>
<% end %>
<%= link_to 'Show', @contract %> |
<%= link_to 'Back', contracts_path %>