new.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(HTM) git clone git://jay.scot/warvox
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
new.html.erb (547B)
---
1 <h1 class='title'>New Project</h1>
2
3 <%= semantic_form_for(@new_project) do |f| %>
4 <%= f.input :name, :as => :string, :label => 'Name', :input_html => { :autofocus => true } %>
5 <%= f.input :description, :as => :text, :input_html => { :class => 'project_description' } %>
6 <%= f.action :submit, :label => 'Create', :button_html => { :class => 'btn btn-large fbtn' } %>
7 <a class="btn btn-link" href="<%= projects_path %>"rel="tooltip" title="Return to projects"><i class="fa fa-return"></i>Cancel</a>
8 <% end %>
9
10 <%= set_focus('project_name') %>