%= render 'shared/room_event' do %>
<%= form_for room_path, method: :post do |f| %>
<%= f.text_field :join_name,
required: true,
class: "form-control main-large",
placeholder: "Enter your name!",
value: "#{current_user ? current_user.name : ''}",
readonly: !current_user.nil? %>
<%= f.submit "Join", class: "btn btn-primary px-7 main-large" %>
<% end %>
<% end %>