Initial commit

This commit is contained in:
2011-09-28 03:37:39 -07:00
commit b1fbb339c2
373 changed files with 52305 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<h1>New 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 'Create' %>
</p>
<% end %>
<%= link_to 'Back', contracts_path %>