Created
February 26, 2012 07:58
-
-
Save k33g/1914862 to your computer and use it in GitHub Desktop.
ejs-template-01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if(!everyauth.loggedIn) { %> | |
<h2>Not Authenticated</h2> | |
<a href="/auth/twitter">Who am i with twitter</a> | |
<% } else {%> | |
<h3>Twitter User Data</h3> | |
<p> | |
<%= JSON.stringify(everyauth.twitter.user) %> | |
</p> | |
<% } %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment