--- /dev/null
+User-agent: *
+Disallow: /login/
+Disallow: /logout/
+Disallow: /associate/
+Disallow: /done/
+Disallow: /error/
+Disallow: /admin/
+Disallow: /complete/
 
     <h1>Django Social Auth</h1>
     <p class="description">
       Django Social Auth is an easy to setup social authentication/registration mechanism for Django projects.
-      Check the documentation on <a hre="https://github.com/omab/django-social-auth#readme" title="docs">Github</a>
+      Check the documentation on <a href="https://github.com/omab/django-social-auth#readme" title="docs">Github</a>
     </p>
 
     <h2 id="heading">{% block heading %}{% endblock %}</h2>
 
   <h3>Associate new credentials:</h3>
   <ul>
     <li>
-      <a href="/associate/twitter/">Twitter</a>
+      <a rel="nofollow" href="/associate/twitter/">Twitter</a>
       {% if twitter %}<span class="associated">(associated)</span>{% endif %}
     </li>
     <li>
-      <a href="/associate/facebook/">Facebook</a>
+      <a rel="nofollow" href="/associate/facebook/">Facebook</a>
       {% if facebook %}<span class="associated">(associated)</span>{% endif %}
     </li>
     <li>
-      <a href="/associate/orkut/">Orkut</a>
+      <a rel="nofollow" href="/associate/orkut/">Orkut</a>
       {% if orkut %}<span class="associated">(associated)</span>{% endif %}
     </li>
     <li>
-      <a href="/associate/google/">Google</a>
+      <a rel="nofollow" href="/associate/google/">Google</a>
       {% if google %}<span class="associated">(associated)</span>{% endif %}
     </li>
     <li>
-      <a href="/associate/yahoo/">Yahoo</a>
+      <a rel="nofollow" href="/associate/yahoo/">Yahoo</a>
       {% if yahoo %}<span class="associated">(associated)</span>{% endif %}
     </li>
 
 </div>
 
 <div>
-  <a class="logout" href="/logout/">Logout</a>
+  <a rel="nofollow" class="logout" href="/logout/">Logout</a>
 </div>
 {% endblock %}
 
 
 {% block content %}
 <div>
-  <h3>Login using <a href="http://oauth.net/">OAuth</a> from:</h3>
+  <h3>Login using <a target="_blank" href="http://oauth.net/" title="OAuth">OAuth</a> from:</h3>
   <ul>
-    <li><a href="/login/twitter/">Twitter</a></li>
-    <li><a href="/login/facebook/">Facebook</a></li>
-    <li><a href="/login/orkut/">Orkut</a></li>
+    <li><a rel="nofollow" href="/login/twitter/">Twitter</a></li>
+    <li><a rel="nofollow" href="/login/facebook/">Facebook</a></li>
+    <li><a rel="nofollow" href="/login/orkut/">Orkut</a></li>
   </ul>
 </div>
 
 <div>
-  <h3>Login using <a href="http://openid.net/">OpenId</a> from:</h3>
+  <h3>Login using <a target="_blank" href="http://openid.net/" title="OpenId">OpenId</a> from:</h3>
   <ul>
-    <li><a href="/login/google/">Google</a></li>
-    <li><a href="/login/yahoo/">Yahoo</a></li>
+    <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 href="https://www.myopenid.com/" title="My OpenId">myopenid</a></p>
+        <p class="helptext">Like your personal <a target="_blank" href="https://www.myopenid.com/" title="My OpenId">myopenid</a></p>
       </form>
     </li>
   </ul>
 
-from django.conf.urls.defaults import *
+from django.conf.urls.defaults import patterns, url, include
 from django.contrib import admin
 
 from app.views import home, done, logout, error