forked from External/greenlight
remove refresh on specific pages and change join form
This commit is contained in:
parent
bef04f0465
commit
7da04d3334
|
@ -2,6 +2,10 @@
|
||||||
// They will automatically be included in application.css.
|
// They will automatically be included in application.css.
|
||||||
// You can use Sass (SCSS) here: http://sass-lang.com/
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
||||||
|
|
||||||
|
.join-form {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.rooms {
|
.rooms {
|
||||||
.table-wrapper {
|
.table-wrapper {
|
||||||
padding: 40px 50px 10px 50px;
|
padding: 40px 50px 10px 50px;
|
||||||
|
|
|
@ -15,7 +15,7 @@ class LandingController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def admin?
|
def admin?
|
||||||
@user == current_user
|
@user && @user == current_user
|
||||||
end
|
end
|
||||||
helper_method :admin?
|
helper_method :admin?
|
||||||
|
|
||||||
|
|
|
@ -7,12 +7,14 @@
|
||||||
</small>
|
</small>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% content_for :footer do %>
|
<% if !@meeting_id %>
|
||||||
|
<% content_for :footer do %>
|
||||||
<div class="panel-footer">
|
<div class="panel-footer">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<a href="#" class="generate-link">Click refresh</a> to generate a new meeting URL
|
<a href="#" class="generate-link">Click refresh</a> to generate a new meeting URL
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="page-wrapper meetings">
|
<div class="page-wrapper meetings">
|
||||||
|
|
|
@ -1,9 +1,23 @@
|
||||||
<div class="input-group input-spacing">
|
<div class="join-form input-group input-spacing">
|
||||||
|
<% if current_user %>
|
||||||
<% @current_user = user %>
|
<% @current_user = user %>
|
||||||
<%= text_field :current_user, :name, class: 'form-control meeting-user-name', placeholder: 'Enter your name' %>
|
<%= text_field :current_user, :name, class: 'form-control meeting-user-name', type: 'hidden' %>
|
||||||
|
<% else %>
|
||||||
|
<%= text_field :nil, :nil, class: 'form-control meeting-user-name', placeholder: 'Enter your name' %>
|
||||||
|
<% end %>
|
||||||
|
<% if admin? %>
|
||||||
|
<button type="button" class="btn btn-primary center-block meeting-join">
|
||||||
|
Start
|
||||||
|
</button>
|
||||||
|
<% elsif current_user %>
|
||||||
|
<button type="button" class="btn btn-primary center-block meeting-join">
|
||||||
|
Join
|
||||||
|
</button>
|
||||||
|
<% else %>
|
||||||
<span class="input-group-btn">
|
<span class="input-group-btn">
|
||||||
<button type="button" class="btn btn-primary meeting-join">
|
<button type="button" class="btn btn-primary meeting-join">
|
||||||
Join
|
Join
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue