<%# # @file # Partial view, renders a form that creates a new map. #%>
<%= form_for Map.new, url: maps_url, remote: true, html: { class: "new_map", id: "new_map" } do |form|%>

Create New Map

<%= form.text_field :name, :maxlength => 140 %>
<%= form.text_area :desc, class: "description", :rows => 5, :cols => 43 %>

*new topics and synapses take on the same permission as the map they are created on

Collaborate with other mappers on editing this map. Only those with accounts can view this map.

COMMONS

Anyone with an account can view this map but not edit anything.

PUBLIC

Only you can view or edit this map.

PRIVATE

Collaborate with other mappers on editing this map. Everyone with an account can view this map.

<% end %>