Skip to content

Instantly share code, notes, and snippets.

@k33g
Created February 26, 2012 08:02
Show Gist options
  • Save k33g/1914881 to your computer and use it in GitHub Desktop.
Save k33g/1914881 to your computer and use it in GitHub Desktop.
ejs-template-02
<% if(!everyauth.loggedIn) { %>
<h2>Not Authenticated</h2>
<a href="/auth/twitter">Who am i with twitter</a>
<% } else {%>
<h3>Twitter User Data</h3>
<p>
<img src="<%= everyauth.twitter.user.profile_image_url %>"/>
<h2>Welcome <%= everyauth.twitter.user.name %></h2>
</p>
<% } %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment