forked from External/greenlight
signup and room waiting
This commit is contained in:
26
app/views/shared/_room_event.html.erb
Normal file
26
app/views/shared/_room_event.html.erb
Normal file
@ -0,0 +1,26 @@
|
||||
<div class="room-section pb-9" room="<%= @room.uid %>" join-name="<%= @join_name %>">
|
||||
<div class="container">
|
||||
<div class="row pt-9">
|
||||
<div class="col-lg-12 col-sm-12">
|
||||
<h4 class="text-left">You have been invited to join</h4>
|
||||
<h1 class="display-3 text-left mb-3 font-weight-400"><%= @room.name %></h1>
|
||||
<hr class="mt-2 float-left" style="width: 20%;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-8 col-sm-12 form-inline mb-5 align-top">
|
||||
<% if @room.owner.image.nil? %>
|
||||
<span class="avatar"><%= @room.owner.name.first %></span>
|
||||
<% else %>
|
||||
<span class="avatar" style="background-image: url(<%= @room.owner.image %>)"></span>
|
||||
<% end %>
|
||||
<h5 class="font-weight-normal ml-4 mt-3"><%= @room.owner.name %> (Owner)</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6 col-md-4 col-sm-12">
|
||||
<%= yield %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user