<title>Django Social Auth</title>
<meta name="description" content="Django Social Auth is an easy to setup social authentication/registration mechanism for Django projects." />
<meta name="keywords" content="social auth, openid, oauth, twitter, facebook, google, yahoo, myopenid, django, python" />
- <style>
+ <style type="text/css">
body {background-color: #eee; padding: 10px 20px; font-family: sans-serif; color: #333;}
h1 {font-size: 1.8em; border-bottom: 1px solid #bbb; width: 95%;}
h2 {font-size: 1.3em; border-bottom: 1px solid #ddd; width: 85%;}
<div id="content">
{% block content %}{% endblock %}
</div>
- <a id="forkme" href="http://github.com/omab/django-social-auth"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
+ <div><a id="forkme" href="http://github.com/omab/django-social-auth"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a></div>
</body>
</html>
{% block content %}
<div>
- <h3>Login using <a target="_blank" href="http://oauth.net/" title="OAuth">OAuth</a> from:</h3>
+ <h3>Login using <a href="http://oauth.net/" title="OAuth">OAuth</a> from:</h3>
<ul>
<li><a rel="nofollow" href="/login/twitter/">Twitter</a></li>
<li><a rel="nofollow" href="/login/facebook/">Facebook</a></li>
</div>
<div>
- <h3>Login using <a target="_blank" href="http://openid.net/" title="OpenId">OpenId</a> from:</h3>
+ <h3>Login using <a href="http://openid.net/" title="OpenId">OpenId</a> from:</h3>
<ul>
<li><a rel="nofollow" href="/login/google/">Google</a></li>
<li><a rel="nofollow" href="/login/yahoo/">Yahoo</a></li>
<li>
<form action="/login/openid/" method="post">{% csrf_token %}
- <label for="openid_identifier">Other provider</label>
- <input id="openid_identifier" type="text" value="" name="openid_identifier" />
- <input type="submit" />
- <p class="helptext">Like your personal <a target="_blank" href="https://www.myopenid.com/" title="My OpenId">myopenid</a></p>
+ <div>
+ <label for="openid_identifier">Other provider</label>
+ <input id="openid_identifier" type="text" value="" name="openid_identifier" />
+ <input type="submit" value="Login" />
+ </div>
+ <p class="helptext">Like your personal <a href="https://www.myopenid.com/" title="My OpenId">myopenid</a></p>
</form>
</li>
</ul>