summaryrefslogtreecommitdiff
path: root/app/views/dashboard/show.html.erb
blob: 048c82746e7739e62d4919adc0dbb809dd7ef7e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

<section class="jumbotron  text-center">
  <h2><img class="jumbo-thumbnail" src="<%= @user['picture'] %>"/></h2>
  <h1>Welcome, <%= @user['name'] %></h1>
</section>
<section class="container">
  <div class="panel panel-default">
    <div class="panel-heading">Normalized User Profile</div>
    <div class="panel-body">
      <pre><%= JSON.pretty_generate(@user) %></pre>
    </div>
  </div>
</section>