ashirahattia/cs169-pgm

View on GitHub
app/views/google/index.html.erb

Summary

Maintainability
Test Coverage
<%= render 'layouts/sidebar.html.erb' %>

<div class="content-container">
  <div class="content">
    <% if check_authorization %>
        <%= render 'google/authorized.html.erb' %>
    <% else %>
        <%= render 'google/not_authorized.html.erb' %>
    <% end %>
  </div>
</div>