Create New Room

<%= form_for(:room, url: rooms_path) do |f| %>
<%= f.text_field :name, id: "room-name", class: "form-control", value: "", placeholder: "Enter a room name...", autocomplete: :off %>
Room name cannot be blank.
<%= f.submit "Create Room", id: "create-room-submit", class: "btn btn-outline-primary btn-block btn-pill" %>
<% end %>

You will be free to delete this room at any time.