24 lines
434 B
Plaintext
24 lines
434 B
Plaintext
<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 %>
|