<h1>Show</h1>

<p id="notice"><%= notice %></p>

<p>
  <b>Name:</b>
  <%= @user.name %>
</p>

<p>
  <b>Email:</b>
  <%= @user.email %>
</p>

<%- if @user.fb_share? -%>
  <p>FB Share</p>
<%- end -%>

<%- if @user.tw_share? -%>
  <p>TW Share</p>
<%- end -%>

<%= link_to 'Edit', edit_user_path(@user) %>
<%= link_to 'Back', users_path %>