sessions and fixes

This commit is contained in:
Josh
2018-05-22 16:58:11 -04:00
parent f189c98c56
commit 434021239c
10 changed files with 98 additions and 27 deletions

View File

@ -0,0 +1,11 @@
<h4>This is an unauthenticated meeting page.</h4>
<% if current_user %>
<%= link_to "Join", join_meeting_path(uid: @meeting.uid), {method: :post} %>
<% else %>
<p>Enter a name to join the session.</p>
<%= form_tag join_meeting_path do %>
<%= text_field_tag "join_name" %>
<%= submit_tag "Join" %>
<% end %>
<% end %>