Skip to content

Instantly share code, notes, and snippets.

@danielgynn
Created November 23, 2015 19:36
Show Gist options
  • Save danielgynn/087bae2a400c5baf4f45 to your computer and use it in GitHub Desktop.
Save danielgynn/087bae2a400c5baf4f45 to your computer and use it in GitHub Desktop.
<% include partials/head %>
<body>
<div class="col-sm-8 col-sm-offset-2">
<div class="text-center">
<h1 class=" fa fa-user"> Profile</h1><br>
<span><strong>user id</strong>: <%= user._id ? user._id : '' %></span><br>
<span class="fa fa-sign-out"><a href="/"> Sign out</a></span>
<hr>
<div class="jumbotron">
<% if (user.local.email != null) { %>
<img src="https://avatars.io/gravatar/<%= user.local.email %>" class="img-circle"><br>
<strong>email</strong>: <%= user.local.email %><br>
<% } %>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment