Files
2013-02-07 03:11:41 -05:00

18 lines
468 B
HTML

if not user.ANON:
request.redirect('/%s/' % user.id)
title = "Sign In"
^L
{% extends templates/base.html %}
{% block box %}
<div class="as-content">
<p>Sign in using
<a href="{{ twitter.oauth_url(website, u'opt-in', u'/credit-card.html') }}">Twitter</a> or
<a href="{{ github.oauth_url(website, u'opt-in', u'/credit-card.html') }}">GitHub</a>,
and this page will redirect you to your profile.</p>
<p>Thanks! :-)</p>
</div>
{% end %}