<%= form_for Map.new, url: maps_url, remote: true, html: { class: "new_map", id: "new_map" } do |form|%>
Create A New Map
<%= form.text_field :name %>
<%= form.text_area :desc, class: "description", :rows => 5 %>
<%= form.hidden_field :permission, :value => "commons" %>
Topics and synapses you create newly on this map will be set by default to the permissions of your map.
<%= form.submit "Save", class: "add" %>
<% end %>